27 lines
609 B
Plaintext
27 lines
609 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"browser": true,
|
|
"es6": true,
|
|
"jest": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:flowtype/recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"plugins": ["babel", "flowtype", "react"],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-var": "error",
|
|
"prefer-const": "error",
|
|
"flowtype/no-types-missing-file-annotation": 0,
|
|
"flowtype/unclear-type": 0
|
|
}
|
|
}
|