添加 gulp 任务

在你的离子应用程序的根目录中,有一个 gulpfile.js 文件。在编辑器中打开它并粘贴以下 gulp 任务:

gulp.task('lint', function() {
    return gulp.src(['./www/js/**/*.js']) 
        .pipe(jshint('.jshintrc'))
        .pipe(jshint.reporter('jshint-stylish')) 
        .pipe(jshint.reporter('fail'))
});

这会在’www’文件夹中查找名为’js’的文件夹。如果你有包含 JavaScript 文件的其他文件夹,也请添加它们。例如,还可以添加一个名为 views 的文件夹:

gulp.task('lint', function() {
    return gulp.src(['./www/js/**/*.js','./www/views/**/*.js'])
        .pipe(jshint('.jshintrc'))
        .pipe(jshint.reporter('jshint-stylish')) 
        .pipe(jshint.reporter('fail'))
});

说明:

1) /**/*.js - This syntax means to look at all the js files in the subfolders too
2) .jshintrc - This is a configuration file that we will create in the next example.