mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
9cf69bcc63
* Update upath * Upgrade gulp * Fix core-js * stash * prettier
32 lines
706 B
Plaintext
32 lines
706 B
Plaintext
{
|
|
"root": true,
|
|
"extends": "eslint-config-airbnb",
|
|
"globals": {
|
|
"chrome": true,
|
|
"__DEVELOPMENT__": true
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"react/jsx-uses-react": 2,
|
|
"react/jsx-uses-vars": 2,
|
|
"react/react-in-jsx-scope": 2,
|
|
"react/jsx-quotes": 0,
|
|
"block-scoped-var": 0,
|
|
"padded-blocks": 0,
|
|
"quotes": [1, "single"],
|
|
"comma-style": [2, "last"],
|
|
"no-use-before-define": [0, "nofunc"],
|
|
"func-names": 0,
|
|
"prefer-const": 0,
|
|
"comma-dangle": 0,
|
|
"id-length": 0,
|
|
"indent": [2, 2, { "SwitchCase": 1 }],
|
|
"new-cap": [2, { "capIsNewExceptions": ["Test"] }],
|
|
"default-case": 0
|
|
},
|
|
"plugins": ["react"]
|
|
}
|