mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
29 lines
445 B
JSON
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"
|
|
}
|
|
}
|
|
]
|
|
}
|