编程语言
首页 > 编程语言> > javascript – grunt:如何以HTML格式生成jshint输出

javascript – grunt:如何以HTML格式生成jshint输出

作者:互联网

我正在尝试使用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的东西?

非常感谢

解决方法:

你需要写一个自定义记者.检查编写自定义报告者的jshint文档:http://jshint.com/docs/reporters/然后,您可以使用以下命令指定报告者的路径:

options: {
  reporter: '/path/to/custom/html/reporter',
  reporterOutput: 'jshint.html'
}

标签:html,javascript,gruntjs,jshint
来源: https://codeday.me/bug/20190725/1533906.html