mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-11 06:30:21 +00:00
23 lines
565 B
JSON
23 lines
565 B
JSON
{
|
|
"$schema": "../web/node_modules/oxlint/configuration_schema.json",
|
|
"plugins": ["oxc"],
|
|
"categories": {
|
|
"correctness": "error",
|
|
"suspicious": "warn"
|
|
},
|
|
"env": {
|
|
"builtin": true
|
|
},
|
|
"globals": {
|
|
"console": "readonly",
|
|
"utils": "readonly"
|
|
},
|
|
"rules": {
|
|
"eqeqeq": ["error", "always", { "null": "ignore" }],
|
|
"no-unused-vars": ["error", { "argsIgnorePattern": "^_", "caughtErrorsIgnorePattern": "^e$" }],
|
|
"no-underscore-dangle": ["warn", { "allow": ["__fileRef"] }],
|
|
"no-undef": "error",
|
|
"no-var": "error"
|
|
}
|
|
}
|