From 86570ed5c3349ffa0fefdfa0d50629d6eb21dbfc Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Sat, 19 Aug 2017 09:37:30 +0200 Subject: [PATCH] Use json extension for .stylelintrc Bug: T173516 Change-Id: I947590725970745378da0b4e85b254efa0c2f169 --- .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 d985906d..4aab7c17 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -18,20 +18,22 @@ module.exports = function ( grunt ) { eslint: { all: [ '**/*.js', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, jsonlint: { all: [ '**/*.json', - '.stylelintrc', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, stylelint: { all: [ '**/*.css', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );