MCP GitHub Issue Server

{ "root": true, "ignorePatterns": ["scripts/*"], "parser": "@typescript-eslint/parser", "parserOptions": { "project": "./tsconfig.json", "ecmaVersion": 2022, "sourceType": "module" }, "plugins": [ "@typescript-eslint", "import", "prettier" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:import/errors", "plugin:import/warnings", "plugin:import/typescript", "plugin:prettier/recommended" ], "env": { "node": true, "es2022": true }, "rules": { "@typescript-eslint/explicit-function-return-type": ["warn", { "allowExpressions": true, "allowTypedFunctionExpressions": true, "allowHigherOrderFunctions": true }], "@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_", "ignoreRestSiblings": true }], "@typescript-eslint/require-await": "warn", "@typescript-eslint/no-floating-promises": "error", "@typescript-eslint/no-misused-promises": ["error", { "checksVoidReturn": false }], "@typescript-eslint/prefer-nullish-coalescing": "warn", "@typescript-eslint/prefer-optional-chain": "warn", "import/no-unresolved": "error", "import/order": ["warn", { "groups": [ ["builtin", "external"], "internal", ["parent", "sibling", "index"] ], "newlines-between": "always", "alphabetize": { "order": "asc", "caseInsensitive": true } }], "no-console": ["warn", { "allow": ["warn", "error", "info"] }], "prefer-const": "warn", "eqeqeq": ["warn", "always"], "curly": ["warn", "all"], "no-var": "error" }, "settings": { "import/parsers": { "@typescript-eslint/parser": [".ts", ".tsx"] }, "import/resolver": { "typescript": { "alwaysTryTypes": true, "project": "./tsconfig.json" } } } }