Skip to content

Commit

Permalink
test then lint is a slightly better workflow than lint then test
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanmacinnes committed Nov 11, 2014
1 parent d06534f commit a261777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -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");
};

0 comments on commit a261777

Please sign in to comment.