Monday 11 May 2015

How to turn off jshint on grunt.js .

Near the end of the Gruntfile.js file we have the code 

grunt.registerTask('build', [
  'compass:dist',
    'jshint'
]);


Changing this to 


grunt.registerTask('build', [
  'compass:dist',
    'jshint'
]);

solved my issue.


No comments: