stellar-neighbours/.oxlintrc.json
2025-02-03 10:59:26 +01:00

19 lines
397 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["import", "typescript", "unicorn"],
"env": {
"browser": true
},
"globals": {},
"settings": {},
"rules": {
"eqeqeq": "error",
"import/no-cycle": "error"
},
"overrides": [{
"files": ["*.test.ts", "*.spec.ts"],
"rules": {
"@typescript-eslint/no-explicit-any": "warn"
}
}]
}