From 2479c4e768207d4e5e54d27e5a91bd708b67dddf Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 5 Feb 2015 13:07:23 +0200 Subject: Add `lint` target in the `test` one too. --- Gruntfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 38615c3..b240dbf 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -81,13 +81,13 @@ module.exports = function (grunt) { // These plugins provide necessary tasks. require('load-grunt-tasks')(grunt, {scope: 'devDependencies'}); + grunt.registerTask('lint', ['jshint', 'eslint', 'jscs']); + // Whenever the "test" task is run, first clean the "tmp" dir, then run this // plugin's task(s), then test the result. - grunt.registerTask('test', ['clean', 'cssflip', 'nodeunit']); - - grunt.registerTask('lint', ['jshint', 'eslint', 'jscs']); + grunt.registerTask('test', ['lint', 'clean', 'cssflip', 'nodeunit']); // By default, lint and run all tests. - grunt.registerTask('default', ['lint', 'test']); + grunt.registerTask('default', 'test'); }; -- cgit v1.2.3