mattermost-desktop/.eslintrc.json

22 lines
539 B
JSON
Raw Normal View History

2016-08-30 08:33:55 -07:00
{
"extends": "./.eslintrc-webapp.json",
"parserOptions": {
"ecmaVersion": 2017
},
2018-04-09 09:16:44 -07:00
"settings": {
"import/resolver": "node"
},
2016-08-30 08:33:55 -07:00
"rules": {
2018-04-09 09:16:44 -07:00
"import/no-commonjs": 2,
"indent": [2, 2, {"SwitchCase": 0}],
"no-console": 0,
"no-process-env": 0,
2016-08-30 08:33:55 -07:00
"no-underscore-dangle": 1,
"react/jsx-indent": [2, 2],
"react/jsx-indent-props": [2, 2],
2018-02-20 04:44:23 -08:00
"react/no-set-state": 1,
"react/prefer-es6-class": 1,
2018-02-20 04:44:23 -08:00
"react/require-optimization": 0
2016-08-30 08:33:55 -07:00
}
}