grunt js-hint:写错误输出文件无法正常工作

时间:2014-08-19 08:48:06

标签: javascript gruntjs jshint grunt-contrib-jshint

我试图在jshint和jshint-log-reporter中使用grunt,并且无法编写输出文件。

我已经安装了jshint和jshint-log-reporter。

我的Gruntfile.js看起来像这样:

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
    options: {
      jshintrc : '.jshintrc',
      reporter: require('jshint-log-reporter'),
      reporterOutput: 'WebContent/js/report.log'
    },
    files: {
        src: ["WebContent/js/**/*.js"]
    }
}......

当我执行grunt时,jshint任务似乎有效,但是 - 没有创建或编辑文件。

我做错了什么? 感谢

0 个答案:

没有答案