mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-29 04:53:54 +03:00
26 lines
428 B
Plaintext
26 lines
428 B
Plaintext
|
{
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"standard",
|
||
|
"plugin:react/recommended",
|
||
|
"prettier"
|
||
|
],
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"parser": "babel-eslint",
|
||
|
"rules": {
|
||
|
"quotes": [2, "single"],
|
||
|
"strict": [2, "never"],
|
||
|
"react/jsx-uses-react": 2,
|
||
|
"react/jsx-uses-vars": 2,
|
||
|
"react/react-in-jsx-scope": 2
|
||
|
},
|
||
|
"plugins": [
|
||
|
"prettier",
|
||
|
"standard",
|
||
|
"react"
|
||
|
]
|
||
|
}
|