我想在grunt设置中为jshint使用自定义报告器。目前我没有时间成为node.js / grunt专家,所以我希望找到一个样本grunt文件,其中包含一个记者的定义以及如何将其提供给jshint。
广泛的搜索只给了我一些gruntfile.js示例,其中没有一个改变了jshint的报告者。我查看了所有提到“gruntfile.js”的堆栈溢出帖子的摘要。
由于
答案 0 :(得分:5)
你需要这个:
options: {
reporter: 'jslint'
}
这是我的Gruntfile.js(原始):
/* jshint strict: true, devel: true */
require('./config.js');
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
jshint: {
all: ['Gruntfile.js', 'config.js', 'src/**/*.js'],
options: {
reporter: 'jslint'
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('foo', function() {
requirejs('resources').copy();
});
grunt.registerTask('default', ['jshint', 'foo']);
};