Open Sysix opened 3 days ago
0.11.1
npx oxlint -c .oxlint.json
.oxlint.json
{ "categories": { "correctness": "off" }, "rules": { "no-identical-title": "error", // "vitest/no-identical-title": "error", -- also report jest/no-identical-title not supported // "jest/no-identical-title": "error" -- also reports jest/no-identical-title not supported } }
! The following rules do not match the currently supported rules: | jest/no-identical-title
The same does happend for other rules rules jest/no-focused-tests. I think all current rules are effected which should be the following:
jest/no-focused-tests
'consistent-test-it', 'expect-expect', 'no-alias-methods', 'no-conditional-expect', 'no-conditional-in-test', 'no-commented-out-tests', 'no-disabled-tests', 'no-focused-tests', 'no-identical-title', 'no-restricted-jest-methods', 'no-test-prefixes', 'prefer-hooks-in-order', 'valid-describe-callback', 'valid-expect',
I'm seeing the same issue with 0.11.1 but with the following:
What version of Oxlint are you using?
0.11.1
What command did you run?
npx oxlint -c .oxlint.json
What does your
.oxlint.json
config file look like?What happened?
The same does happend for other rules rules
jest/no-focused-tests
. I think all current rules are effected which should be the following: