From beb54ff999b14b585a3dba8393f204808960b79f Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Sat, 19 Aug 2017 09:40:38 +0200 Subject: [PATCH] Use json extension for .stylelintrc Bug: T173516 Change-Id: I3216495396d962490b2ef69caa0e5f6263a4922d --- .stylelintrc => .stylelintrc.json | 0 Gruntfile.js | 9 ++++++--- 2 files changed, 6 insertions(+), 3 deletions(-) rename .stylelintrc => .stylelintrc.json (100%) diff --git a/.stylelintrc b/.stylelintrc.json similarity index 100% rename from .stylelintrc rename to .stylelintrc.json diff --git a/Gruntfile.js b/Gruntfile.js index 41082b71..df5bdd7f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -18,7 +18,8 @@ module.exports = function ( grunt ) { all: [ '**/*.js', '!node_modules/**', - '!modules/ace/**' + '!modules/ace/**', + '!vendor/**' ] }, stylelint: { @@ -26,14 +27,16 @@ module.exports = function ( grunt ) { '**/*.css', '**/*.less', '!node_modules/**', - '!modules/ace/**' + '!modules/ace/**', + '!vendor/**' ] }, banana: conf.MessagesDirs, jsonlint: { all: [ '**/*.json', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );