mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-29 04:53:54 +03:00
b80cc9e5b9
* Merge react-json-tree from alexkuz/react-json-tree * Npm package config * Add credits * Stick `eslint-plugin-react` to `7.4.0` till change deprecated `componentWillReceiveProps`
26 lines
428 B
Plaintext
Executable File
26 lines
428 B
Plaintext
Executable File
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"standard",
|
|
"plugin:react/recommended",
|
|
"prettier"
|
|
],
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"quotes": [2, "single"],
|
|
"strict": [2, "never"],
|
|
"react/jsx-uses-react": 2,
|
|
"react/jsx-uses-vars": 2,
|
|
"react/react-in-jsx-scope": 2
|
|
},
|
|
"plugins": [
|
|
"prettier",
|
|
"standard",
|
|
"react"
|
|
]
|
|
}
|