1

我刚开始和 Grunt 混在一起。我有一个成功运行的基本实现,缩小了我的代码并运行了 JSHint。

它说 0 个文件 lint free,我收集到这意味着它正在检查的所有文件都有 lint。

但是,我已经在谷歌上搜索了一个小时,而且难以置信的是,无法弄清楚这些错误到底保存在哪里。

我需要在 grunt 配置中指定一个日志文件吗?我在 JSHint 或 grunt 文档中没有看到类似的内容。

下面的 Gruntfile 几乎直接取自 Grunt 的“入门”。我退出了 qunit,因为我目前没有任何测试 -

module.exports = function(grunt) {
  grunt.initConfig({

    pkg: grunt.file.readJSON('package.json'),

    concat: {
      options: {
        // define a string to put between each file in the concatenated output
        separator: ';'
      },
      dist: {
        // the files to concatenate
        src: ['spin/**/*.js'],
        // the location of the resulting JS file
        dest: 'dist/<%= pkg.name %>.js'
      }
    },

    uglify: {
      options: {
        // the banner is inserted at the top of the output
        banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
      },
      dist: {
        files: {
          'dist/<%= pkg.name %>.min.js': ['<%= concat.dist.dest %>']
        }
      }
    },

    jshint: {
      // define the files to lint
      files: ['gruntfile.js', 'src/**/*.js', 'test/**/*.js'],
      // configure JSHint (documented at http://www.jshint.com/docs/)
      options: {
          // more options here if you want to override JSHint defaults
          "curly": true,
  "eqnull": true,
  "eqeqeq": true,
  "undef": true,
        globals: {
          jQuery: true,
          console: true,
          module: true
        }
      }
    },

    watch: {
      files: ['<%= jshint.files %>'],
      tasks: ['jshint']
    }

  });

      grunt.loadNpmTasks('grunt-contrib-uglify');
      grunt.loadNpmTasks('grunt-contrib-jshint');
      grunt.loadNpmTasks('grunt-contrib-watch');
      grunt.loadNpmTasks('grunt-contrib-concat');

      grunt.registerTask('test', ['jshint']);

      grunt.registerTask('default', ['jshint', 'concat', 'uglify']);

};
4

1 回答 1

1

0 个文件 lint free 并不意味着您有文件有错误,这意味着检查了零个文件!

jshint-task 将向您的控制台输出错误(包括文件、行号和列)

那就是您指定要检查的文件的地方:

files: ['gruntfile.js', 'src/**/*.js', 'test/**/*.js'],

如果您将“gruntfile.js”更改为“Gruntfile.js”(区分大小写!),它应该检查您的 gruntfile(您当然已经拥有)。

于 2013-04-06T15:36:46.630 回答