2015-06-01 22:09:28 +00:00
|
|
|
{
|
2018-04-05 23:46:22 +00:00
|
|
|
"extends": ["airbnb", "plugin:prettier/recommended"],
|
2015-12-28 23:34:32 +00:00
|
|
|
"parser": "babel-eslint",
|
2017-02-16 02:55:50 +00:00
|
|
|
"env": {
|
|
|
|
"browser": true
|
|
|
|
},
|
2015-12-28 23:34:32 +00:00
|
|
|
"rules": {
|
2017-05-22 01:49:37 +00:00
|
|
|
"consistent-return": 0,
|
2018-03-25 00:34:41 +00:00
|
|
|
"jsx-a11y/click-events-have-key-events": 0,
|
|
|
|
"jsx-a11y/no-autofocus": 0,
|
|
|
|
"jsx-a11y/no-noninteractive-element-interactions": 0,
|
2017-02-16 02:55:50 +00:00
|
|
|
"jsx-a11y/no-static-element-interactions": 0,
|
2018-04-27 01:14:35 +00:00
|
|
|
"no-console": 1,
|
2015-12-28 23:34:32 +00:00
|
|
|
"no-param-reassign": 0,
|
2017-02-16 02:55:50 +00:00
|
|
|
"no-plusplus": 0,
|
2018-03-25 00:34:41 +00:00
|
|
|
"no-restricted-globals": 1,
|
2017-02-16 02:55:50 +00:00
|
|
|
"react/jsx-filename-extension": 0,
|
|
|
|
"react/no-array-index-key": 0,
|
2018-03-25 00:34:41 +00:00
|
|
|
"react/prefer-stateless-function": 0,
|
|
|
|
"react/prop-types": 0
|
2015-12-28 23:34:32 +00:00
|
|
|
},
|
2017-06-21 06:40:28 +00:00
|
|
|
"settings": {
|
|
|
|
"import/resolver": {
|
2018-04-05 19:13:32 +00:00
|
|
|
"webpack": {
|
|
|
|
"config": "webpack.config.prod.js"
|
|
|
|
}
|
2017-06-21 06:40:28 +00:00
|
|
|
}
|
2015-12-28 23:34:32 +00:00
|
|
|
}
|
|
|
|
}
|