You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
694 B
41 lines
694 B
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"plugins": [
|
|
"import",
|
|
"typescript",
|
|
"unicorn"
|
|
],
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"globals": {},
|
|
"settings": {},
|
|
"rules": {
|
|
"no-var": "error",
|
|
"no-void": "error",
|
|
"import/no-cycle": "error",
|
|
"eqeqeq": [
|
|
"error",
|
|
"always",
|
|
{
|
|
"null": "ignore"
|
|
}
|
|
],
|
|
"no-restricted-globals": [
|
|
"error",
|
|
"isFinite",
|
|
"isNaN"
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.test.ts",
|
|
"*.spec.ts"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|