Open
Description
When having a config file like:
I expect that the linter will auto enable the env.jest
setting in .oxlintrc.json
(or CLI with --jest-plugin
) like:
{
"overrides": [
{
"files": ["**.spec.ts"],
"plugins": ["jest"],
"env": {
"jest": true
}
}
]
}
The same with vitest
but is currently not supported: oxc-project/javascript-globals#19