.eslintrc
{
"extends": [ "airbnb" ],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"jest": true
},
"plugins": [
"flowtype"
],
"rules": {
"semi": [ 2, "never" ],
"object-curly-newline": [ 0 ],
"object-property-newline": [ 0 ],
"comma-dangle": [ 0 ],
"react/jsx-filename-extension": [2, {
"extensions": [".js", ".jsx"]
}],
"import/no-extraneous-dependencies": [ 0 ],
"react/prop-types": [ 0 ],
"no-confusing-arrow": [ 0 ],
"no-underscore-dangle": [ 0 ],
"no-param-reassign": [ 0 ],
"react/forbid-prop-types": [ 0 ],
"no-plusplus": [ 0 ],
"guard-for-in": [ 0 ],
"no-restricted-syntax": [ 0 ],
"no-continue": [ 1 ],
"no-prototype-builtins": [ 0 ],
"max-len": [ 0, 80 ],
"no-mixed-operators": [ 0 ],
"no-lonely-if": [ 1 ],
"no-bitwise": [ 0 ],
"arrow-parens": [ 0 ],
"function-paren-newline": [ 0 ],
"radix": [ 0 ]
}
}