mattermost-desktop/.eslintrc.json

16 lines
401 B
JSON
Raw Normal View History

2016-08-30 08:33:55 -07:00
{
2016-12-20 06:38:10 -08:00
"extends": "./.eslintrc-platform.json",
2016-08-30 08:33:55 -07:00
"rules": {
"global-require": 1,
"indent": [2, 2, {"SwitchCase": 0}],
"no-console": 0,
2016-08-30 08:33:55 -07:00
"no-eval": 1,
"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],
"react/prefer-es6-class": 1,
"react/no-set-state": 1
2016-08-30 08:33:55 -07:00
}
}