From 8a92f5058760299347027683814a68304b8ce57f Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Sat, 19 Aug 2017 09:39:39 +0200 Subject: [PATCH] Use json extension for .stylelintrc Bug: T173516 Change-Id: Ie9845533c08f8f879514904f1806c971681c5e65 --- .stylelintrc => .stylelintrc.json | 0 Gruntfile.js | 7 ++++--- 2 files changed, 4 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 827e2023..b5e41a57 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -17,14 +17,15 @@ module.exports = function ( grunt ) { jsonlint: { all: [ '**/*.json', - '.stylelintrc', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, stylelint: { all: [ '**/*.css', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );