We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e99afc commit ce0d804Copy full SHA for ce0d804
eslint.config.js
@@ -79,7 +79,13 @@ export default tseslint.config(
79
],
80
'@typescript-eslint/no-require-imports': 'off', // diabling until typescript rewrite
81
'@typescript-eslint/no-shadow': 'error',
82
- '@typescript-eslint/no-empty-function': 'off', // disabling due to lots of functions defaulting to empty
+ '@typescript-eslint/no-empty-function': 'off', // disabling due to lots of functions defaulting to empt@typescript-eslint/no-empty-functiony
83
+ '@typescript-eslint/no-unused-vars': [
84
+ "error",
85
+ {
86
+ caughtErrors: "none"
87
+ }
88
+ ],
89
'no-underscore-dangle': 'off',
90
'comma-dangle': ['error', 'always-multiline'],
91
'comma-style': ['error', 'last'],
0 commit comments