diff --git a/eslint.config.js b/eslint.config.js index 39ea393..164dc04 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -28,5 +28,18 @@ export default tseslint.config( }, { ignores: ['build/', '.svelte-kit/', 'dist/'] + }, + { + rules: { + 'no-unused-vars': 'off', + '@typescript-eslint/no-unused-vars': [ + 'warn', + { + argsIgnorePattern: '^_', + varsIgnorePattern: '^_', + caughtErrorsIgnorePattern: '^_' + } + ] + } } );