diff options
Diffstat (limited to 'web/gulpfile.js')
-rw-r--r-- | web/gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/gulpfile.js b/web/gulpfile.js index 3aebcd95..6f72016b 100644 --- a/web/gulpfile.js +++ b/web/gulpfile.js @@ -98,7 +98,7 @@ gulp.task("scripts-prod", ["scripts-app-prod", "scripts-vendor-prod"]); gulp.task("jshint", function () { return gulp.src(["src/js/**"]) .pipe(dont_break_on_errors()) - .pipe(react({harmony: true})) + .pipe(react({harmony: false /* Do not do Harmony transformation for JSHint */})) .pipe(jshint()) .pipe(jshint.reporter("jshint-stylish")) }); |