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 3200e47..9fe331a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -13,18 +13,20 @@ module.exports = function ( grunt ) { jsonlint: { all: [ '**/*.json', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, stylelint: { all: [ '**/*.css', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, watch: { files: [ - '.{stylelintrc,.eslintrc.json}', + '.{stylelintrc,.eslintrc}.json', '<%= eslint.all %>', '<%= stylelint.all %>' ], @@ -34,7 +36,8 @@ module.exports = function ( grunt ) { all: [ '*.js', 'modules/**/*.js', - '!**/node_modules/**' + '!**/node_modules/**', + '!vendor/**' ] } } );