From 0e3a065f42b6a5ccd5e440dcd87f919e75d04261 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 21 Feb 2016 12:15:37 +0200 Subject: [PATCH] Remove JSHint from default task. It's in test task, and test task is in default, so it's redundant. --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index e7089d3..08cff05 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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']); };