pixelplanet/.eslintrc.json
HF 11a9c11631 fix 75 eslint warnings,
rename files with jsx code to .jsx,
fix ChatModal export
2020-01-03 14:00:33 +01:00

31 lines
488 B
JSON

{
"extends": [
"plugin:flowtype/recommended",
"airbnb"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"flowtype",
"react",
"jsx-a11y",
"import"
],
"globals": {
"__DEV__": false
},
"env": {
"browser": true
},
"rules": {
"max-len": [1, 80, 2, {"ignoreComments": true}],
"no-bitwise": 0,
"no-plusplus" : "off",
"no-param-reassign": "off",
"no-mixed-operators":"off"
}
}