You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
373 B
JSON
18 lines
373 B
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"plugins": ["typescript", "unicorn", "oxc"],
|
|
"categories": {
|
|
"correctness": "error",
|
|
"suspicious": "warn",
|
|
"pedantic": "warn"
|
|
},
|
|
"rules": {
|
|
"eslint/max-lines": "off",
|
|
"eslint/max-lines-per-function": "off"
|
|
},
|
|
"env": {
|
|
"builtin": true
|
|
},
|
|
"ignorePatterns": ["dist/"]
|
|
}
|