mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
- Less dev dependencies - Much faster - More helpful output - More sane defaults - Easier config
28 lines
381 B
JSON
28 lines
381 B
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"
|
|
}
|
|
}
|
|
]
|
|
}
|