mattermost-desktop/.eslintrc.json
2018-02-23 00:37:24 +09:00

18 lines
447 B
JSON

{
"extends": "./.eslintrc-webapp.json",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"indent": [2, 2, {"SwitchCase": 0}],
"no-console": 0,
"no-process-env": 0,
"no-underscore-dangle": 1,
"react/jsx-indent": [2, 2],
"react/jsx-indent-props": [2, 2],
"react/no-set-state": 1,
"react/prefer-es6-class": 1,
"react/require-optimization": 0
}
}