mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2026-06-22 20:00:39 +00:00
a880864b2c
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
30 lines
717 B
JSON
30 lines
717 B
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"plugins": [
|
|
"typescript",
|
|
"jest",
|
|
"react",
|
|
"nextjs",
|
|
"jsx-a11y",
|
|
"import",
|
|
"unicorn",
|
|
"oxc"
|
|
],
|
|
"rules": {
|
|
"no-debugger": "warn",
|
|
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_+$" }],
|
|
"typescript/no-unused-vars": ["warn", { "argsIgnorePattern": "^_+$" }],
|
|
"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"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"jest": true
|
|
}
|
|
} |