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');
};
このうなり声を実行すると、出力は XML になります。これを HTML を出力するものに変える方法について何か提案はありますか?
どうもありがとう