From 84b9870e8831633497a91a75025757f48b606263 Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Sat, 19 Aug 2017 10:27:54 +0200 Subject: [PATCH] Use json extension for .stylelintrc Bug: T173516 Change-Id: I4b5293769f5cce7ebd86218d9629a272695bbbbb --- .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 3b3f9ac6..04666bc9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -9,7 +9,8 @@ module.exports = function ( grunt ) { eslint: { all: [ '**/*.js', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, banana: { @@ -18,14 +19,15 @@ module.exports = function ( grunt ) { jsonlint: { all: [ '**/*.json', - '.stylelintrc', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, stylelint: { all: [ '**/*.css', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );