Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My jshint code is:

 jshint: {
      options: {
        curly: true,
        eqeqeq: true,
        immed: true,
        latedef: true,
        newcap: true,
        noarg: true,
        sub: true,
        undef: true,
        boss: true,
        eqnull: true,
        browser: true
      },
      globals: {
        jQuery: true
      }
    },

and I am calling that as:

  grunt.registerTask('foo', 'lint');// For running in cmd you need grunt.cmd foo.

How can I overcome with this error ???

share|improve this question

1 Answer

up vote 2 down vote accepted

You could fix the mixed tabs and spaces :)

Or add the smarttabs option to ignore the error:

jshint: {
  options: {
    smarttabs: true
  }
}

Or if you only want to disable warnings per file, add this to the top of the files with the errors:

/*jshint smarttabs:true */

JSHint documentation: http://www.jshint.com/docs/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.