mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
f5dd8252e1
ADD: New send screen ADD: Support for BIP70 decoding
22 lines
360 B
Plaintext
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 }
|
|
}
|