diff --git a/.eslint.config.js b/.eslint.config.js new file mode 100644 index 0000000000..1321a4834e --- /dev/null +++ b/.eslint.config.js @@ -0,0 +1,16 @@ +{ + "rules": { + "@typescript-eslint/no-unused-vars": [ + "error", + { + "args": "all", + "argsIgnorePattern": "^_", + "caughtErrors": "all", + "caughtErrorsIgnorePattern": "^_", + "destructuredArrayIgnorePattern": "^_", + "varsIgnorePattern": "^_", + "ignoreRestSiblings": true + } + ] + } + } \ No newline at end of file