dispatch/client/.eslintrc

28 lines
655 B
Plaintext
Raw Normal View History

2015-06-01 22:09:28 +00:00
{
"extends": ["airbnb", "prettier", "prettier/react"],
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-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,
"react/destructuring-assignment": 0,
2017-02-16 02:55:50 +00:00
"react/jsx-filename-extension": 0,
2018-03-25 00:34:41 +00:00
"react/prop-types": 0
2015-12-28 23:34:32 +00:00
},
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.prod.js"
}
}
2015-12-28 23:34:32 +00:00
}
}