From e5c9924141252403865bfdb078d49e413c5ea7ad Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Sat, 26 Dec 2015 08:13:45 -0600 Subject: [PATCH] lint: Ignore rule for one-var in tests --- tasks/gulp-eslint.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/gulp-eslint.js b/tasks/gulp-eslint.js index 83930556c7..b107a1d515 100644 --- a/tasks/gulp-eslint.js +++ b/tasks/gulp-eslint.js @@ -51,6 +51,7 @@ gulp.task('lint:common', () => { gulp.task('lint:tests', () => { let options = { rules: { + 'one-var': 0, 'max-nested-callbacks': 0, 'no-unused-expressions': 0, 'mocha/no-exclusive-tests': 2,