We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
unbound-method
@typescript-eslint
1 parent 56a7323 commit 18fcb19Copy full SHA for 18fcb19
jest.config.ts
@@ -43,8 +43,8 @@ if (semver.major(eslintVersion) !== 8) {
43
({ displayName }) => displayName !== 'lint',
44
);
45
46
- // jest/unbound-method doesn't work when using @typescript-eslint v6
47
- if (semver.major(typescriptESLintPluginVersion) === 6) {
+ // jest/unbound-method seems to only be happy with @typescript-eslint v7 right now...
+ if (semver.major(typescriptESLintPluginVersion) !== 7) {
48
for (const project of config.projects) {
49
project.testPathIgnorePatterns.push(
50
'<rootDir>/src/rules/__tests__/unbound-method.test.ts',
0 commit comments