pixelplanet/.eslintrc.json

31 lines
488 B
JSON
Raw Normal View History

2020-01-02 16:58:06 +00:00
{
"extends": [
"plugin:flowtype/recommended",
"airbnb"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
2020-01-02 16:58:06 +00:00
"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"
}
}