{
"plugins": [
"typescript",
"unicorn",
"react",
"react-perf",
"oxc",
"import",
"jsdoc",
"node",
"promise",
"vitest"
],
"overrides": [
{
"files": ["tasks/e2e/test/*.test.ts"],
"rules": {
"jest/valid-title": ["off"],
"vitest/valid-title": ["off"]
}
},
}
Given:
I would expect not to have to disable
jest/valid-titlesince I haven't enabled the jest plugin.iirc the problem is
valid-titleis in thecorrectnesscategory, and whenvitestplugin is enabled, thejestplugin is implicitly enabledCaused by #21664