This commit is contained in:
Keivan Beigi 2015-01-29 17:14:38 -08:00
parent b145ea1a70
commit c472d8fe96
155 changed files with 157 additions and 157 deletions

View file

@ -11,8 +11,8 @@ gulp.task('jshint', function () {
.pipe(jshint({
'-W030': false,
'-W064': false,
'-W097': false,
'-W100': false,
'-W097': false, //Use the function form of “use strict”
'-W100': false, //Silently deleted characters (in locales)
'undef': true,
'globals': {
'require': true,
@ -23,4 +23,4 @@ gulp.task('jshint', function () {
}
}))
.pipe(jshint.reporter(stylish));
});
});