.eslintrc.json
{
"extends": "airbnb",
"env": {
"browser": true
},
"plugins": [
"react"
],
"settings": {
"react": {
"pragma": "h"
}
},
"rules": {
"arrow-body-style": 0,
"arrow-parens": 0,
"max-len": 0,
"no-continue": 0,
"no-restricted-syntax": 0,
"prefer-const": 1,
"prefer-template": 0,
"react/prefer-stateless-function": [0, { "ignorePureComponents": true }],
"react/prop-types": 0
}
}