mirror of
https://github.com/Permissionless-Software-Foundation/ipfs-bch-wallet-consumer.git
synced 2026-09-21 16:52:03 -07:00
19 lines
337 B
JSON
19 lines
337 B
JSON
{
|
|
"parser": "babel-eslint",
|
|
"extends": "airbnb",
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"semi": [2, "never"],
|
|
"no-param-reassign": [2, { "props": false }],
|
|
"strict": 0,
|
|
"comma-dangle": [2, "never"],
|
|
"max-len": [2, 80, 2, { "ignoreComments": true }]
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"mocha": true
|
|
}
|
|
}
|