mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 20:20:49 +00:00
30 lines
477 B
JSON
30 lines
477 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",
|
|
"eslint/no-undef": "error"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.spec.js"
|
|
],
|
|
"rules": {
|
|
"eslint/no-console": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|