mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-30 05:45:32 +08:00
22 lines
481 B
JavaScript
22 lines
481 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"node": true,
|
|
"commonjs": true,
|
|
"es2021": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"overrides": [
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest"
|
|
},
|
|
ignorePatterns: ['projects/test/*'],
|
|
"rules": {
|
|
"no-case-declarations": "off",
|
|
"no-unused-vars": "off",
|
|
"no-useless-escape": "warn",
|
|
"no-prototype-builtins": "off",
|
|
"no-unreachable": "off",
|
|
}
|
|
}
|