{ "env": { "node": true, "es2021": true, "jest": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 2021, "sourceType": "module", "project": "./tsconfig.json" }, "plugins": [ "@typescript-eslint" ], "rules": { "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/no-inferrable-types": "warn", "@typescript-eslint/no-unused-vars": "warn", "@typescript-eslint/no-empty-function": "warn", "@typescript-eslint/no-non-null-assertion": "warn", "@typescript-eslint/ban-ts-comment": "warn", "no-control-regex": "warn", "no-useless-escape": "warn", "no-console": "off", "no-debugger": "warn" }, "ignorePatterns": [ "node_modules", "dist", "*.js", "test-imports.ts", "tests/**" ] }