30 lines
724 B
Plaintext
30 lines
724 B
Plaintext
{
|
|
"extends": ["airbnb", "plugin:prettier/recommended"],
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"rules": {
|
|
"consistent-return": 0,
|
|
"jsx-a11y/click-events-have-key-events": 0,
|
|
"jsx-a11y/no-autofocus": 0,
|
|
"jsx-a11y/no-noninteractive-element-interactions": 0,
|
|
"jsx-a11y/no-static-element-interactions": 0,
|
|
"no-console": 1,
|
|
"no-param-reassign": 0,
|
|
"no-plusplus": 0,
|
|
"no-restricted-globals": 1,
|
|
"react/jsx-filename-extension": 0,
|
|
"react/no-array-index-key": 0,
|
|
"react/prefer-stateless-function": 0,
|
|
"react/prop-types": 0
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"webpack": {
|
|
"config": "webpack.config.prod.js"
|
|
}
|
|
}
|
|
}
|
|
}
|