aboutsummaryrefslogtreecommitdiffstats
path: root/thallium-frontend/eslint.config.js
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-08-17 15:09:51 +0100
committerGravatar Joe Banks <[email protected]>2024-08-17 15:09:51 +0100
commitb3c5e13d79a63bb3ebcd92ee648e0b3e7541dc2f (patch)
tree4ab4410f59d06e383f4991bbb13f0342c3108393 /thallium-frontend/eslint.config.js
parentStop 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.js4
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" },
+ ],
},
},
)