mattermost-desktop/.eslintrc.json
Yuya Ochiai 16869c672a Raise warning about stateful components
It would be useful in future refactoring
2017-01-25 00:19:22 +09:00

16 lines
401 B
JSON

{
"extends": "./.eslintrc-platform.json",
"rules": {
"global-require": 1,
"indent": [2, 2, {"SwitchCase": 0}],
"no-console": 0,
"no-eval": 1,
"no-process-env": 0,
"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
}
}