diff options
author | 2024-08-17 15:09:51 +0100 | |
---|---|---|
committer | 2024-08-17 15:09:51 +0100 | |
commit | b3c5e13d79a63bb3ebcd92ee648e0b3e7541dc2f (patch) | |
tree | 4ab4410f59d06e383f4991bbb13f0342c3108393 /thallium-frontend/eslint.config.js | |
parent | Stop consuming error objects on Git, it's noisy (diff) |
Ignore unused errors in catch statements
Diffstat (limited to 'thallium-frontend/eslint.config.js')
-rw-r--r-- | thallium-frontend/eslint.config.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/thallium-frontend/eslint.config.js b/thallium-frontend/eslint.config.js index 8dd02bb..094971a 100644 --- a/thallium-frontend/eslint.config.js +++ b/thallium-frontend/eslint.config.js @@ -41,6 +41,10 @@ export default tseslint.config( }], "semi": ["error", "always"], "quotes": ["error", "double"], + "@typescript-eslint/no-unused-vars": [ + "error", + { "caughtErrors": "none" }, + ], }, }, ) |