BlueWallet/.eslintrc

17 lines
273 B
Plaintext
Raw Normal View History

2018-03-17 18:36:42 +01:00
{
2018-03-17 19:43:34 +01:00
"parser": "babel-eslint",
"plugins": [
2018-03-17 21:39:21 +01:00
"react", "prettier"
2018-03-17 19:43:34 +01:00
],
2018-03-17 21:39:21 +01:00
"extends": ["standard", "standard-react", "prettier"],
"rules": {
'prettier/prettier': [
'warn',
{
singleQuote: true,
trailingComma: 'all',
},
]
}
2018-03-17 18:36:42 +01:00
}