AikidoSec-safe-chain/.oxlintrc.json
Hans Ott 5e08461859
Add $schema reference for autocompletion
Co-authored-by: Timo Kössler <info@timokoessler.de>
2025-10-10 11:41:42 +02:00

29 lines
445 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": [
"node",
"promise",
"eslint",
"unicorn",
"oxc",
"import"
],
"env": {
"browser": false,
"node": true
},
"rules": {
"eslint/no-console": "error",
"eslint/no-empty": "error"
},
"overrides": [
{
"files": [
"*.spec.js"
],
"rules": {
"eslint/no-console": "off"
}
}
]
}