From 41cfd050a24aded552d84f399f4d3c6e3fde8323 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 28 Jan 2016 14:54:30 -0800 Subject: [PATCH] [Build] Change task name for code style check --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index b6ed0b899b..20ef4a6b8e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -76,7 +76,7 @@ gulp.task('lint', function () { .pipe(jshint.reporter('fail')); }); -gulp.task('codestyle', function () { +gulp.task('checkstyle', function () { return gulp.src(paths.scripts) .pipe(jscs()) .pipe(jscs.reporter())