Removed unused standalone libraries and fixed a few outstanding imports.

This commit is contained in:
n1474335 2017-03-07 11:27:36 +00:00
parent a21e0e546b
commit 99f306dc18
76 changed files with 55 additions and 32053 deletions

View file

@ -29,7 +29,11 @@
// modify rules from base configurations
"no-unused-vars": ["error", {
"args": "none",
"vars": "local"
"vars": "local",
// Allow vars that start with a capital letter to be unused.
// This is mainly for exported module names which are useful to indicate
// the name of the module and may be used to refer to itself in future.
"varsIgnorePattern": "^[A-Z]"
}],
"no-empty": ["error", {
"allowEmptyCatch": true
@ -112,7 +116,7 @@
"SeasonalWaiter": false,
"WindowWaiter": false,
/* tests */
/* test/* */
"TestRegister": false,
"TestRunner": false
}