mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
d6a0e13d3b
From zalmoxisus/remotedev-app/pull/43
36 lines
772 B
Plaintext
36 lines
772 B
Plaintext
{
|
|
"extends": "eslint-config-airbnb",
|
|
"globals": {
|
|
"chrome": true
|
|
},
|
|
"env": {
|
|
"jest": true,
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"react/jsx-uses-react": 2,
|
|
"react/jsx-uses-vars": 2,
|
|
"react/react-in-jsx-scope": 2,
|
|
"react/sort-comp": 0,
|
|
"react/jsx-quotes": 0,
|
|
"block-scoped-var": 0,
|
|
"padded-blocks": 0,
|
|
"quotes": [ 1, "single" ],
|
|
"comma-style": [ 2, "last" ],
|
|
"eol-last": 0,
|
|
"no-unused-vars": 0,
|
|
"no-console": 0,
|
|
"func-names": 0,
|
|
"prefer-const": 0,
|
|
"comma-dangle": 0,
|
|
"id-length": 0,
|
|
"no-use-before-define": 0,
|
|
"indent": [2, 2, {"SwitchCase": 1}],
|
|
"new-cap": [2, { "capIsNewExceptions": ["Test"] }]
|
|
},
|
|
"plugins": [
|
|
"react"
|
|
]
|
|
} |