mattermost-desktop/test/.eslintrc.json

19 lines
365 B
JSON
Raw Normal View History

{
"env": {
"mocha": true
},
"globals": {
"open_window": true
},
"rules": {
2018-04-09 09:16:44 -07:00
"import/no-commonjs": 0,
2017-04-20 05:32:34 -07:00
"func-names": 0,
"global-require": 0,
"max-nested-callbacks": 0,
"no-eval": 0,
2017-04-20 05:32:34 -07:00
"no-magic-numbers": 0,
2018-02-02 05:45:54 -08:00
"no-unused-expressions": 0,
2017-04-20 05:32:34 -07:00
"prefer-arrow-callback": 0
}
}