2015-06-02 00:09:28 +02:00
|
|
|
{
|
2018-11-04 07:22:46 +01:00
|
|
|
"extends": ["airbnb", "prettier", "prettier/react"],
|
2015-12-29 00:34:32 +01:00
|
|
|
"parser": "babel-eslint",
|
2017-02-16 03:55:50 +01:00
|
|
|
"env": {
|
|
|
|
"browser": true
|
|
|
|
},
|
2015-12-29 00:34:32 +01:00
|
|
|
"rules": {
|
2017-05-22 03:49:37 +02:00
|
|
|
"consistent-return": 0,
|
2018-03-25 01:34:41 +01:00
|
|
|
"jsx-a11y/click-events-have-key-events": 0,
|
|
|
|
"jsx-a11y/no-noninteractive-element-interactions": 0,
|
2017-02-16 03:55:50 +01:00
|
|
|
"jsx-a11y/no-static-element-interactions": 0,
|
2018-04-27 03:14:35 +02:00
|
|
|
"no-console": 1,
|
2015-12-29 00:34:32 +01:00
|
|
|
"no-param-reassign": 0,
|
2017-02-16 03:55:50 +01:00
|
|
|
"no-plusplus": 0,
|
2018-03-25 01:34:41 +01:00
|
|
|
"no-restricted-globals": 1,
|
2020-04-30 07:54:30 +02:00
|
|
|
"no-underscore-dangle": 1,
|
2018-11-04 07:22:46 +01:00
|
|
|
"react/destructuring-assignment": 0,
|
2017-02-16 03:55:50 +01:00
|
|
|
"react/jsx-filename-extension": 0,
|
2020-04-30 07:54:30 +02:00
|
|
|
"react/jsx-props-no-spreading": 0,
|
|
|
|
"react/prop-types": 0,
|
|
|
|
"react/state-in-constructor": 0,
|
|
|
|
"react/static-property-placement": 0
|
2015-12-29 00:34:32 +01:00
|
|
|
},
|
2017-06-21 08:40:28 +02:00
|
|
|
"settings": {
|
|
|
|
"import/resolver": {
|
2018-04-05 21:13:32 +02:00
|
|
|
"webpack": {
|
|
|
|
"config": "webpack.config.prod.js"
|
|
|
|
}
|
2017-06-21 08:40:28 +02:00
|
|
|
}
|
2015-12-29 00:34:32 +01:00
|
|
|
}
|
|
|
|
}
|