export default [{
files: [
"src/**/*.ts",
"__tests__/**/*.ts",
],
ignores: [
"**/dist/",
"**/lib/",
"**/node_modules/",
"**/jest.config.js",
],
}, ...compat.extends("plugin:github/recommended"), {
plugins: {
"@typescript-eslint": typescriptEslint,
},
languageOptions: {
globals: {
...globals.node,
},
parser: tsParser,
ecmaVersion: 2023,
sourceType: "module",
parserOptions: {
project: "./tsconfig.json",
},
},
thank for the work on updating this , I saw #578 but I think there's at least one more reference to the plugin the recommended section
eslint-plugin-github/lib/configs/recommended.js
Line 21 in 7c07c17