mattermost-desktop/.eslintrc.json
Yuya Ochiai ab5e5590a4 Fix Windows uninstaller not removing files correctly
Multiple async tasks were not performed completely when running uninstaller.
So rearranged tasks with sequential order.
i.e. take care startup registry, finally call electron-squirrel-startup.
2017-07-11 21:33:40 +09:00

18 lines
430 B
JSON

{
"extends": "./.eslintrc-platform.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
}
}