mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-12 01:01:32 -04:00
Removed unused standalone libraries and fixed a few outstanding imports.
This commit is contained in:
parent
a21e0e546b
commit
99f306dc18
76 changed files with 55 additions and 32053 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue