mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 13:46:55 +03:00
23 lines
582 B
Plaintext
23 lines
582 B
Plaintext
|
{
|
||
|
"extends": "eslint-config-airbnb",
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"mocha": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"parser": "babel-eslint",
|
||
|
"rules": {
|
||
|
"comma-dangle": [2, "never"],
|
||
|
"jsx-quotes": [2, "prefer-single"],
|
||
|
"react/jsx-uses-react": 2,
|
||
|
"react/jsx-uses-vars": 2,
|
||
|
"react/react-in-jsx-scope": 2,
|
||
|
"react/sort-comp": 0,
|
||
|
"react/forbid-prop-types": 0,
|
||
|
"import/no-extraneous-dependencies": 0,
|
||
|
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
|
||
|
"jsx-a11y/no-static-element-interactions": 0
|
||
|
},
|
||
|
"plugins": ["react"]
|
||
|
}
|