From a3fac7d4ba5d56d82e6f25048041a22feda43a34 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 1 Aug 2017 22:23:58 +0200 Subject: [PATCH] build: stylelint now ignores /vendor/ When using composer install at the root of the skin, stylelint attempts to lint all the PHP packages and report errors. Ignore the directory entirely like we do for jshint or jsonlint. Change-Id: I327ae63024f5c53be628297a438187ff91dfa962 --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 60df3e6..d812e55 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -29,7 +29,8 @@ module.exports = function ( grunt ) { '**/*.css', '**/*.less', '!resources/libraries/**', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );