diff --git a/.eslintrc.json b/.eslintrc.json index 30aa785..08581f4 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,16 +1,11 @@ { + "root": true, "parser": "@typescript-eslint/parser", - "parserOptions": { - "ecmaVersion": "2022", - "sourceType": "module" - }, + "plugins": ["@typescript-eslint"], "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], - "env": { - "node": true, - "es2022": true - }, "rules": { "@typescript-eslint/no-explicit-any": "warn", - "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }] - } -} \ No newline at end of file + "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }] + }, + "ignorePatterns": ["dist/", "node_modules/"] +}