mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
17 lines
258 B
Plaintext
17 lines
258 B
Plaintext
|
{
|
||
|
"extends": "eslint-config-airbnb",
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"mocha": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"react/jsx-uses-react": 2,
|
||
|
"react/jsx-uses-vars": 2,
|
||
|
"react/react-in-jsx-scope": 2
|
||
|
},
|
||
|
"plugins": [
|
||
|
"react"
|
||
|
]
|
||
|
}
|