grunt-contrib-jshint不显示消息

时间:2017-09-13 15:17:25

标签: grunt-contrib-jshint

我创建了一个新节点项目,我已经安装了很多模块并创建了第一个index.js文件

的package.json

{
  "name": "parser-test",
  "version": "1.0.0",
  "description": "parser test",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "luca bottoni",
  "license": "ISC",
  "dependencies": {
    "node-cmd": "^3.0.0"
  },
  "devDependencies": {
    "grunt": "^1.0.1",
    "grunt-contrib-jshint": "^1.1.0",
    "grunt-contrib-watch": "^1.0.0",
    "grunt-exec": "^3.0.0"
  }
}

index.js (它失败了,因为我想查看jshint消息!)

console.log("test");
a={a=6};

如果我从项目文件夹发送cmd jshint index.js,我看到(正常工作):

index.js: line 3, col 5, Expected ':' and instead saw '='.
1 error

现在我想使用grunt任务来检查我的文件

Gruntfile.js

module.exports = function(grunt) {
    // Project configuration.
    grunt.initConfig({
                     pkg:  grunt.file.readJSON('package.json'),
                     watch:{
                         scripts:{
                             files:["./*.js"],
                             tasks:['jshint']
                         }
                     },
                     jshint: {
                         files: ['Gruntfile.js',"index.js"]
                     }
                 });
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
// Default task(s).
grunt.registerTask('default', ['watch:scripts']);
grunt.registerTask('jshint', ['jshint']);
};

现在我尝试使用命令grunt jshint使用单个任务jshint,但是看不到任何消息。如果我使用手表,只在第一次观察任务并且未检查文件index.js上的任何更改。

我无法理解为什么直接命令jshint工作,但任务咕噜声保持冻结

1 个答案:

答案 0 :(得分:0)

经过多次测试后我已经解决了

我已经开启了关于grunt命令的详细信息

grunt jshint --verbose ,我看到无限:

运行“jshint”任务

运行“jshint”任务

运行“jshint”任务

运行“jshint”任务

运行“jshint”任务

运行“jshint”任务

定义中的注册任务和任务具有相同的名称“jshint”,我修改了grunt.registerTask中的名称(' jshints ',['jshint']);

现在工作正常