mattermost-desktop/.eslintrc.json

18 lines
428 B
JSON

{
"extends": "./.eslintrc-webapp.json",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"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
}
}