BlueWallet/.eslintrc
Igor Korsakov f5dd8252e1
Development (#103)
ADD: New send screen
ADD: Support for BIP70 decoding
2018-10-20 22:10:21 +01:00

22 lines
360 B
Plaintext

{
"parser": "babel-eslint",
"plugins": [
"react", "prettier"
],
"extends": ["standard", "standard-react", "prettier"],
"rules": {
'prettier/prettier': [
'warn',
{
singleQuote: true,
printWidth: 140,
trailingComma: 'all'
}
]
},
"env":{
"es6": true
},
"globals": { "fetch": false }
}