diff options
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 5568290a..ac1a4e63 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -10,12 +10,17 @@ }, "rules": { "indent": ["off"], + "no-empty": ["error", { + "allowEmptyCatch": true + }], "no-unexpected-multiline": ["off"], "no-unused-labels": ["off"], "no-unused-vars": ["error", { "argsIgnorePattern": "^_", "destructuredArrayIgnorePattern": "^" }], - "no-cond-assign": ["off"] + "no-cond-assign": ["off"], + "no-constant-condition": ["off"], + "no-unsafe-finally": ["off"] } } |