mirror of
https://github.com/status-im/ETHReport.git
synced 2025-01-09 13:46:03 +00:00
22 lines
429 B
Plaintext
22 lines
429 B
Plaintext
{
|
|
"extends": [
|
|
"airbnb"],
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
|
|
"no-console": "error",
|
|
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }]
|
|
},
|
|
"globals": {
|
|
"fetch": false,
|
|
"it": false,
|
|
"describe": false,
|
|
"expect": false,
|
|
"afterEach": false,
|
|
"jest": false
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
}
|
|
}
|