From 547b87afc6d7f89ddab1fdb4f01ef66d6de2aa7f Mon Sep 17 00:00:00 2001 From: hacksalot Date: Mon, 28 Dec 2015 04:17:48 -0500 Subject: [PATCH] LINT prior to running tests. --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3e6d20a..ae15fac 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -51,9 +51,9 @@ module.exports = function (grunt) { grunt.loadNpmTasks('grunt-contrib-clean'); grunt.registerTask('test', 'Test the HackMyResume library.', - function( config ) { grunt.task.run( ['clean','simplemocha:all'] ); }); + function( config ) { grunt.task.run( ['clean','jshint','simplemocha:all'] ); }); grunt.registerTask('document', 'Generate HackMyResume library documentation.', function( config ) { grunt.task.run( ['yuidoc'] ); }); - grunt.registerTask('default', [ 'jshint', 'test', 'yuidoc' ]); + grunt.registerTask('default', [ 'test', 'yuidoc' ]); };