We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eslint-plugin-jest(valid-title)
0.15.6
oxlint -c=../../../.oxlintrc.json
.oxlint.json
{ "$schema": "./node_modules/oxlint/configuration_schema.json", "categories": { "correctness": "error" }, "plugins": ["typescript", "unicorn", "oxc", "security", "jsdoc", "n", "vitest"], "env": {}, "settings": {}, "rules": { "eqeqeq": ["error", "always", { "null": "ignore" }], "vitest/expect-expect": "off", "vitest/no-disabled-tests": "off", "vitest/no-conditional-expect": "off", "jest/no-standalone-expect": "off", "jest/no-export": "off", "no-document-cookie": "off", "no-unused-vars": "off" }, "overrides": [ { "files": ["*.svelte"], "rules": { "no-unused-vars": "off" } } ] }
The type of testCase is string, but this error occurred. I think we need to implement the configs provided by eslint-plugin-vitest. https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-title.md
testCase
string
eslint-plugin-vitest
The text was updated successfully, but these errors were encountered:
In fact, vitest/valid-title also has this issue.
vitest/valid-title
Sorry, something went wrong.
ignoreTypeOfTestName
jest/valid-title
feat(linter): support ignoreTypeOfTestName for jest/valid-title (#…
01ac773
…8589) closes #8531 I'm not sure if we should support it because both `vitest` and `jest` have this issue
Successfully merging a pull request may close this issue.
What version of Oxlint are you using?
0.15.6
What command did you run?
oxlint -c=../../../.oxlintrc.json
What does your
.oxlint.json
config file look like?What happened?
The type of
testCase
isstring
, but this error occurred.I think we need to implement the configs provided by
eslint-plugin-vitest
.https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-title.md
The text was updated successfully, but these errors were encountered: