From a2617776f8add2b76c602c47bdb946cec38c6a00 Mon Sep 17 00:00:00 2001 From: Nathan MacInnes Date: Tue, 11 Nov 2014 10:28:16 +0000 Subject: [PATCH] test then lint is a slightly better workflow than lint then test --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 727641a..2eda6c8 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -65,7 +65,7 @@ module.exports = function (grunt) { grunt.registerTask("lint", ["jshint", "jscs"]); grunt.registerTask("markdown", "mdlint"); - grunt.registerTask("default", ["lint", "test"]); + grunt.registerTask("default", ["test", "lint"]); grunt.loadNpmTasks("grunt-contrib-watch"); };