redux-devtools/.eslintrc
Nathan Bierema b50af14542
chore(*): remove prettier plugin (#742)
* chore(*): remove prettier plugin

* Remove references
2021-06-17 23:26:53 -04:00

28 lines
584 B
Plaintext

{
"root": true,
"parser": "babel-eslint",
"extends": ["eslint:recommended", "plugin:react/recommended", "prettier"],
"globals": {
"chrome": true
},
"env": {
"es6": true,
"browser": true,
"jest": true,
"node": true
},
"rules": {
"eol-last": ["warn"],
"max-len": ["warn", { "code": 120, "ignoreComments": true }],
"quotes": ["warn", "single", "avoid-escape"],
"jsx-quotes": ["warn", "prefer-double"],
"react/prop-types": 0
},
"plugins": ["react", "babel"],
"settings": {
"react": {
"version": "detect"
}
}
}