mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2026-06-23 04:10:17 +00:00
78062bb75c
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
24 lines
433 B
JSON
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
|
|
}
|
|
}
|