From 4319c7e5bf88a23e7fde1cf587e2bb4a44dea202 Mon Sep 17 00:00:00 2001 From: eric-intuitem <71850047+eric-intuitem@users.noreply.github.com> Date: Mon, 16 Sep 2024 23:23:28 +0200 Subject: [PATCH] Create .eslint.config.js --- .eslint.config.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .eslint.config.js 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