mirror of
https://github.com/Mibew/mibew.git
synced 2025-02-12 10:31:09 +03:00
Make ES lint stop nagging about unused argument of catch statement
This commit is contained in:
parent
ce3a59b13c
commit
a56e775ab9
@ -4,7 +4,8 @@
|
|||||||
"indent": ["error", 4, {"SwitchCase": 1}],
|
"indent": ["error", 4, {"SwitchCase": 1}],
|
||||||
"no-trailing-spaces": "error",
|
"no-trailing-spaces": "error",
|
||||||
"semi": ["error", "always"],
|
"semi": ["error", "always"],
|
||||||
"guard-for-in": "error"
|
"guard-for-in": "error",
|
||||||
|
"no-unused-vars": ["error", {"caughtErrors": "none"}]
|
||||||
},
|
},
|
||||||
"globals": {
|
"globals": {
|
||||||
"Mibew": true,
|
"Mibew": true,
|
||||||
|
Loading…
Reference in New Issue
Block a user