diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-01-11 20:24:52 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-01-11 20:24:52 -0400 |
commit | dabed5eea43b888a44d4e0facae4f5bc04abfd4c (patch) | |
tree | 67e69b02579b6e7745be9c3fb3e762c3bd9c9577 | |
parent | be5966ee63d361f884891ba192c9cac8582b81ab (diff) |
eslint misc grumpies
-rw-r--r-- | .eslintrc.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index a125d582..ac1a4e63 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -10,6 +10,9 @@ }, "rules": { "indent": ["off"], + "no-empty": ["error", { + "allowEmptyCatch": true + }], "no-unexpected-multiline": ["off"], "no-unused-labels": ["off"], "no-unused-vars": ["error", { @@ -17,6 +20,7 @@ "destructuredArrayIgnorePattern": "^" }], "no-cond-assign": ["off"], - "no-constant-condition": ["off"] + "no-constant-condition": ["off"], + "no-unsafe-finally": ["off"] } } |