What version of Oxlint are you using?
1.60.0
What command did you run?
oxlint -c .oxlintrc.json
What does your .oxlintrc.json (or oxlint.config.ts) config file look like?
What happened?
The command throws an error for vi.mock calls
2 |
3 | vi.mock(import('foo'), () => vi.fn());
: ^^^^^^^
`----
help: Add an `expect` or assertion call as the last statement in the test block.
What version of Oxlint are you using?
1.60.0
What command did you run?
oxlint -c .oxlintrc.json
What does your
.oxlintrc.json(oroxlint.config.ts) config file look like?{ "plugins": ["jest"], "rules": { "jest/prefer-ending-with-an-expect": "error" } }What happened?
The command throws an error for vi.mock calls