我试图在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任务似乎有效,但是 - 没有创建或编辑文件。
我做错了什么? 感谢