.eslintrc
{
"extends": ["airbnb"],
"parser": "babel-eslint",
"env": {
"node": true,
"jest": true
},
"plugins": ["flowtype"],
"rules": {
"semi": [2, "never"],
"object-curly-newline": [2],
"object-property-newline": [0],
"import/prefer-default-export": [0],
"max-len": [2, 120],
"comma-dangle": [2, "never"],
"no-confusing-arrow": [0],
"no-param-reassign": [1],
"no-nested-ternary": [1],
"no-mixed-operators": [0],
"no-underscore-dangle": [0],
"no-plusplus": [0],
"no-restricted-syntax": [0],
"consistent-return": [0]
}
}