mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
19 lines
284 B
Plaintext
19 lines
284 B
Plaintext
|
{
|
||
|
"extends": "eslint-config-airbnb",
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"jest": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"prefer-template": 0,
|
||
|
"no-shadow": 0,
|
||
|
"comma-dangle": 0,
|
||
|
"react/sort-comp": 0
|
||
|
},
|
||
|
"parser": "babel-eslint",
|
||
|
"plugins": [
|
||
|
"react"
|
||
|
]
|
||
|
}
|