diff --git a/.eslintrc.json b/.eslintrc.json index 676a9bf..f421ab1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -2,17 +2,8 @@ "root": true, "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended" - ], - "parserOptions": { - "ecmaVersion": 2020, - "sourceType": "module" - }, - "rules": { - "@typescript-eslint/no-explicit-any": "warn", - "@typescript-eslint/explicit-function-return-type": "off", - "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }] - } -} + "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], + "env": {"node": true, "es2020": true}, + "parserOptions": {"ecmaVersion": 2020, "sourceType": "module"}, + "rules": {"@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/explicit-module-boundary-types": "off"} +} \ No newline at end of file