mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-20 14:05:27 +01:00
21 lines
360 B
Text
21 lines
360 B
Text
{
|
|
"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 }
|
|
}
|