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 https://github.com/github/eslint-plugin-github/blob/7c07c177361a08fe4b9c53f55309623aad09176b/lib/configs/recommended.js#L21 ``` 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", }, }, ```