21 lines
379 B
JSON
21 lines
379 B
JSON
|
|
{
|
||
|
|
"root": true,
|
||
|
|
"extends": "eslint:recommended",
|
||
|
|
"env": {
|
||
|
|
"node": true,
|
||
|
|
"es6": true
|
||
|
|
},
|
||
|
|
"parser": "babel-eslint",
|
||
|
|
"plugins": [
|
||
|
|
"flowtype"
|
||
|
|
],
|
||
|
|
"parserOptions": {
|
||
|
|
"ecmaVersion": 6,
|
||
|
|
"sourceType": "module"
|
||
|
|
},
|
||
|
|
"rules": {
|
||
|
|
"indent": ["error", 2],
|
||
|
|
"linebreak-style": ["error", "unix"]
|
||
|
|
}
|
||
|
|
}
|