Skip to content

Commit

Permalink
Merge pull request #149 from radkodinev/run-jshint-with-tests
Browse files Browse the repository at this point in the history
First check code with jshint upon running npm/grunt test
  • Loading branch information
vladikoff committed Aug 25, 2014
2 parents aff27fb + bc02d58 commit 81197ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,12 @@ module.exports = function (grunt) {

grunt.registerTask('mkdir', grunt.file.mkdir);
grunt.registerTask('test', [
'jshint',
'clean',
'mkdir:tmp',
'sass',
'nodeunit',
'clean'
]);
grunt.registerTask('default', ['jshint', 'test', 'build-contrib']);
grunt.registerTask('default', ['test', 'build-contrib']);
};

0 comments on commit 81197ee

Please sign in to comment.