Removed eslint jsdoc configuration. Added eslint to webpack.

This commit is contained in:
2022-04-17 21:38:38 -05:00
parent aaa726ff28
commit 8856980532
10 changed files with 89 additions and 151 deletions

View File

@@ -1,4 +1,3 @@
import VisualizerUpdateManager from "../visualization/VisualizerUpdateManager.js";
import { mapBinNumerical, mapRangedAvgNumerical } from "./numeric.js";
/**

View File

@@ -2,8 +2,6 @@
// TODO: add for height
// TODO: add for background
import VisualizerUpdateManager from "../visualization/VisualizerUpdateManager.js";
/**
*
* @callback numericalGetter

View File

@@ -1,5 +1,4 @@
import "../styles/songplayer.css";
import SongPlaylist from "./SongPlaylist.js";
/**
* A player that keeps track of global properties for playback as well as traversing a playlist. Additionally keeps track of song audio data and attempts to reduce memory usage when possible.

View File

@@ -1,7 +1,5 @@
import Visualizer from "../visualization/Visualizer.js";
import VisualizerUpdateManager from "../visualization/VisualizerUpdateManager.js";
import SongPlayer from "./SongPlayer.js";
import SongPlaylist from "./SongPlaylist.js";
/**
* A song player that provides easier access to the current songs visualizer data.

View File

@@ -1,6 +1,6 @@
/**
* @callback interpolator
* @typedef {function} interpolator
* @param {number} current the current value.
* @param {number} dest the destination value.
* @param {number} frameDelta the time elapsed since the last update.

View File

@@ -1,6 +1,3 @@
import Visualizer from "./Visualizer.js";
/**
* A visualizer update manager offers an extra layer of abstraction on top of the {@link Visualizer}'s update listener.
*