diff --git a/Build/Gruntfile.js b/Build/Gruntfile.js index a79421f7695b8a6287867f7445ee160dfc8ba162..3fad45101536d46d37853a4dd36cd250d1b54643 100644 --- a/Build/Gruntfile.js +++ b/Build/Gruntfile.js @@ -438,6 +438,17 @@ module.exports = function(grunt) { */ grunt.registerTask('default', ['css']); + /** + * grunt lint + * + * call "$ grunt lint" + * + * this task does the following things: + * - tslint + * - stylelint + */ + grunt.registerTask('lint', ['tslint', 'stylelint']); + /** * grunt format * diff --git a/Build/package.json b/Build/package.json index 3b9012caed414711aa277010229913b1e6b7e3e1..2840f694983f16b62e252ec5b5decb51fce7013d 100644 --- a/Build/package.json +++ b/Build/package.json @@ -53,7 +53,6 @@ }, "scripts": { "bower": "./node_modules/.bin/bower install", - "grunt-stylelint": "./node_modules/.bin/grunt stylelint", - "grunt-tslint": "./node_modules/.bin/grunt tslint" + "lint": "./node_modules/.bin/grunt lint" } }