BlueWallet/.eslintrc

18 lines
296 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,
printWidth: 140,
2018-03-20 01:49:32 +01:00
trailingComma: 'all'
}
2018-03-17 21:39:21 +01:00
]
}
2018-03-17 18:36:42 +01:00
}