mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
34 lines
611 B
Plaintext
34 lines
611 B
Plaintext
{
|
|
"extends": "plugin:flowtype/recommended",
|
|
"globals": {
|
|
"chrome": true
|
|
},
|
|
"env": {
|
|
"jest": true,
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"react/jsx-uses-react": 2,
|
|
"react/jsx-uses-vars": 2,
|
|
"react/react-in-jsx-scope": 2,
|
|
"react/sort-comp": 0,
|
|
"react/jsx-quotes": 0,
|
|
"eol-last": 0,
|
|
"no-unused-vars": 0,
|
|
"no-console": 0,
|
|
"comma-dangle": 0
|
|
},
|
|
"plugins": [
|
|
"react",
|
|
"flowtype"
|
|
]
|
|
} |