BlueWallet/.eslintrc

22 lines
360 B
Text
Raw Normal View History

2018-03-17 19:36:42 +02:00
{
2018-03-17 20:43:34 +02:00
"parser": "babel-eslint",
"plugins": [
2018-03-17 22:39:21 +02:00
"react", "prettier"
2018-03-17 20:43:34 +02:00
],
2018-03-17 22:39:21 +02:00
"extends": ["standard", "standard-react", "prettier"],
"rules": {
'prettier/prettier': [
'warn',
{
singleQuote: true,
printWidth: 140,
2018-03-20 02:49:32 +02:00
trailingComma: 'all'
}
2018-03-17 22:39:21 +02:00
]
},
"env":{
"es6": true
},
"globals": { "fetch": false }
2018-03-17 19:36:42 +02:00
}