Skip to content

Commit

Permalink
Merge pull request #281 from null-a/lint-before-tests
Browse files Browse the repository at this point in the history
Run linter before tests.
  • Loading branch information
null-a committed Dec 14, 2015
2 parents d18cf87 + 5b6a546 commit 4694f2f
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 @@ -71,7 +71,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-clean');

grunt.registerTask('default', ['nodeunit', 'gjslint']);
grunt.registerTask('default', ['gjslint', 'nodeunit']);
grunt.registerTask('test', ['nodeunit']);
grunt.registerTask('lint', ['gjslint']);
grunt.registerTask('hint', ['jshint']);
Expand Down

0 comments on commit 4694f2f

Please sign in to comment.