Added eslint. To lint, npm run lint.

Linted the entire project. Using different rules for the script files
as there are a lot of undefined variables just because of the way the
DOM's global scope works.

Mostly just code cleanup, however the linter did catch a minor bug with
a settings regex. That has been corrected.
This commit is contained in:
Daniel Scalzi
2018-07-22 13:31:15 -04:00
parent ededf85892
commit 810e81521c
18 changed files with 1205 additions and 261 deletions

View File

@@ -483,7 +483,7 @@ class DistroIndex {
* @returns {Server} The main server.
*/
getMainServer(){
return getServer(this.mainServer)
return this.mainServer != null ? this.getServer(this.mainServer) : null
}
}