Files
2026-05-09 13:05:59 +02:00

36 lines
783 B
JSON

{
"$schema": "../node_modules/oxlint/configuration_schema.json",
"plugins": [
"typescript",
"react",
"nextjs",
"jsx-a11y",
"jest",
"oxc"
],
"rules": {
"no-debugger": "warn",
"typescript/consistent-type-imports": ["error", {
"prefer": "type-imports",
"disallowTypeAnnotations": false
}],
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/valid-expect": "error",
"jest/expect-expect": ["error", {
"assertFunctionNames": ["expect*", "screen.*", "test*"]
}],
"nextjs/no-img-element": "off"
},
"env": {
"browser": true,
"jest": true
},
"options": {
"typeAware": true,
"typeCheck": true,
"maxWarnings": 0
}
}