在Grunt中为单个文件运行JSHint

时间:2013-06-16 01:28:23

标签: gruntjs jshint

我在Grunt中有多个子任务(src,lib和test)的JSHint设置,效果很好。但是,由于我们刚开始使用此设置,因此我们的许多源文件中存在很多错误。

$ grunt jshint:src
... lots of errors ...

在一次处理一个文件时,是否可以重新隐藏该单个文件?

$ grunt jshint:src:one.js
... only errors from one.js ...

更新

一个复杂因素是监视任务有多个子任务,可根据编辑的文件类型触发不同的任务。

watch: {
    src: {
        files: [ SRC_DIR + "hgm*.js" ],
        tasks: [ "jshint:src", "test" ]
    },
    lib: {
        files: [ "lib/hgm-test-setup.js", "lib/hgm.loader.js" ],
        tasks: [ "jshint:lib", "test" ]
    },
    test: {
        files: [ "tests/**/*.js" ],
        tasks: [ "jshint:test", "test" ]
    }
}

原因是srclib使用一个.jshint,而test使用另一个指定用于测试的所有全局变量(如断言)。我可以合并srclib,但是我可以覆盖test的JSHint配置文件吗?

2 个答案:

答案 0 :(得分:4)

grunt-contrib-watch-task,提供了如何配置任务的示例,并使用watch-event仅提取已更改的文件:

grunt.initConfig({
  watch: {
    scripts: {
      files: ['lib/*.js'],
      tasks: ['jshint'],
      options: {
        nospawn: true,
      },
    },
  },
  jshint: {
    all: ['lib/*.js'],
  },
});

// on watch events configure jshint:all to only run on changed file
grunt.event.on('watch', function(action, filepath) {
  grunt.config(['jshint', 'all'], filepath);
});

答案 1 :(得分:0)

由于上述答案并非我所期待或寻找的,我想提供这个答案......

您可以像grunt jshint-file:src/filename.js

一样调用它
grunt.registerTask('jshint-file',
        'Runs jshint on a file',
        function (filePath) {
            var reportFunc = require('jshint/src/reporters/unix').reporter
            var optionsString = grunt.file.read('.jshintrc')
            var options = JSON.parse(optionsString)
            jshint(grunt.file.read(filePath), options)
            errors = jshint.data().errors.map(function (error) {
                var record = {};
                record.file = filePath;
                record.error = error;
                return record;
            });
            console.log(reportFunc(errors))
        }
    )