mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
20 lines
365 B
Plaintext
20 lines
365 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,
|
|
// Temporarily disabled due to babel-eslint issues:
|
|
"block-scoped-var": 0,
|
|
"padded-blocks": 0
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
]
|
|
}
|