25 lines
471 B
JSON
25 lines
471 B
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"extends": ["config:recommended"],
|
|
"plugins": ["import", "typescript", "unicorn"],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-unused-vars": "off"
|
|
},
|
|
"env": {
|
|
"es6": true
|
|
},
|
|
"globals": {
|
|
"foo": "readonly"
|
|
},
|
|
"settings": {},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.test.ts", "*.spec.ts"],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|