我正在尝试使用 grunt 运行 jshint。这可行,但现在我希望输出是 HTML。这是我的咕噜声文件
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
all: ['Gruntfile.js', 'src/*.js']
, options: {
//reporter: 'jslint'
reporter:'checkstyle'
, reporterOutput: 'jshint.html'
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
};
运行这个 grunt taks,输出是 XML。有什么建议可以把它变成输出 HTML 的东西吗?
非常感谢