Skip to content

Commit

Permalink
Remove JSHint from default task.
Browse files Browse the repository at this point in the history
It's in test task, and test task is in default, so it's redundant.
  • Loading branch information
XhmikosR committed Feb 21, 2016
1 parent fb474dd commit 0e3a065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,6 @@ module.exports = function(grunt) {
grunt.registerTask('test', ['jshint', 'clean', 'concat', 'nodeunit']);

// By default, lint and run all tests.
grunt.registerTask('default', ['jshint', 'test', 'build-contrib']);
grunt.registerTask('default', ['test', 'build-contrib']);

};

0 comments on commit 0e3a065

Please sign in to comment.