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 97f1b4855..9154a45f2 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/**' ] } } );