mattermost-desktop/.eslintrc.json

18 lines
447 B
JSON
Raw Normal View History

2016-08-30 08:33:55 -07:00
{
"extends": "./.eslintrc-webapp.json",
"parserOptions": {
"ecmaVersion": 2017
},
2016-08-30 08:33:55 -07:00
"rules": {
"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
}
}