From 73dc92fb624421e472bc2179cebb8d8ef83f5580 Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Sat, 19 Aug 2017 09:49:33 +0200 Subject: [PATCH] Use json extension for .stylelintrc Bug: T173516 Change-Id: I8e963c76fa7af376f410c4e4294f5ada2cb932db --- .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 5f8eaef5..71742f04 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -13,7 +13,8 @@ module.exports = function ( grunt ) { all: [ '**/*.js', '!node_modules/**', - '!lib/**' + '!lib/**', + '!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/**' ] } } );