You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
275 B
20 lines
275 B
3 years ago
|
{
|
||
|
"parser": "babel-eslint",
|
||
|
"plugins": [
|
||
|
"flowtype",
|
||
|
"prettier"
|
||
|
],
|
||
|
"extends": [
|
||
|
"prettier"
|
||
|
],
|
||
|
"env": {
|
||
|
"es6": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"prettier/prettier": ["error", {
|
||
|
"singleQuote": true,
|
||
|
"semi": false
|
||
|
}]
|
||
|
}
|
||
|
}
|