From 71c44e6799a4060bac05a55d86c7359168e8fb28 Mon Sep 17 00:00:00 2001 From: Benjamin Kott <benjamin.kott@wfp2.com> Date: Thu, 1 Jun 2017 21:05:19 +0200 Subject: [PATCH] [TASK] Combine lint task for ci integration and correct code violations Resolves: #81411 Releases: master, 8.7 Change-Id: I2b0f848ee6db870e78d8d102ef48ba2b417f91d7 Reviewed-on: https://review.typo3.org/53013 Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- Build/Gruntfile.js | 11 +++++++++++ Build/package.json | 3 +-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Build/Gruntfile.js b/Build/Gruntfile.js index a79421f7695b..3fad45101536 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 3b9012caed41..2840f694983f 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" } } -- GitLab