Files
Erik Michelson 78062bb75c chore(lint): enable type-aware linting
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
2026-05-09 13:05:59 +02:00

24 lines
433 B
JSON

{
"$schema": "../node_modules/oxlint/configuration_schema.json",
"plugins": [
"typescript",
"jest",
"oxc"
],
"rules": {
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/valid-expect": "error"
},
"env": {
"node": true,
"jest": true
},
"options": {
"typeAware": true,
"typeCheck": true,
"maxWarnings": 0
}
}