From 63800fcc4ded6341a267950c4c160f972b533be5 Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Sat, 19 Aug 2017 09:42:18 +0200 Subject: [PATCH] Use json extension for .stylelintrc Bug: T173516 Change-Id: I0d83079033747f00d13ef90249b16218b76348f8 --- .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 97f1b485..9154a45f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -9,13 +9,15 @@ module.exports = function ( grunt ) { eslint: { all: [ '**/*.js', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, stylelint: { all: [ '**/*.css', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, banana: { @@ -28,7 +30,8 @@ module.exports = function ( grunt ) { all: [ '*.json', '**/*.json', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );