From a774b1a297a190437ada3e6e3e5ad5900a4ecbbb Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Sat, 19 Aug 2017 10:12:13 +0200 Subject: [PATCH] Use json extension for .stylelintrc Bug: T173516 Change-Id: I2ffdd7d96dcd56e14c06b46ebb4239a2e6ee6054 --- .stylelintrc => .stylelintrc.json | 0 Gruntfile.js | 10 ++++++---- 2 files changed, 6 insertions(+), 4 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 b784cf17..4ce8b94a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -13,7 +13,8 @@ module.exports = function ( grunt ) { all: [ '**/*.js', '!modules/qrcode.js', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, banana: { @@ -22,14 +23,15 @@ module.exports = function ( grunt ) { jsonlint: { all: [ '**/*.json', - '.stylelintrc', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, stylelint: { all: [ '**/*.css', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );