{ "env": { "node": true, "es2022": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" }, "plugins": ["@typescript-eslint"], "rules": { "@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-unused-vars": [ "warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } ], "no-console": "off", "prefer-const": "warn", "no-var": "error", "no-case-declarations": "warn" }, "ignorePatterns": [ "dist", "node_modules", "coverage", "*.config.js", "*.config.ts", "bin" ] }