redux-devtools/.eslintrc
Nathan Bierema 5a6074a081
chore(*): add prettier check to CI (#598)
* chore(*): change prettier hook

* Run prettier

* Reorder

* Fix all the files
2020-08-19 10:07:30 -04:00

29 lines
630 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,
"prettier/prettier": "error"
},
"plugins": ["prettier", "react", "babel"],
"settings": {
"react": {
"version": "detect"
}
}
}