chore: Switch to custom eslint-config

This commit is contained in:
Blade Barringer
2016-04-14 08:10:12 -05:00
parent e70add1ac4
commit 10936d9a4d
10 changed files with 68 additions and 208 deletions
+8 -16
View File
@@ -1,18 +1,10 @@
{
"rules": {
"one-var": 0,
"func-names": 0,
"max-nested-callbacks": 0,
"no-unused-expressions": 0,
"mocha/no-exclusive-tests": 2,
"mocha/no-global-tests": 2,
"mocha/handle-done-callback": 2
},
"globals": {
"expect": true,
"_": true,
"sandbox": true,
"sinon": true
},
"plugins": [ "mocha" ]
"extends": [
"habitrpg/mocha",
"habitrpg/babel"
],
"globals": {
"_": true,
"Promise": true
}
}