Merge "Use json extension for .stylelintrc"

This commit is contained in:
jenkins-bot 2017-08-19 21:43:18 +00:00 committed by Gerrit Code Review
commit ee3c867da8
2 changed files with 6 additions and 4 deletions

View file

@ -9,7 +9,8 @@ module.exports = function ( grunt ) {
eslint: { eslint: {
all: [ all: [
'**/*.js', '**/*.js',
'!node_modules/**' '!node_modules/**',
'!vendor/**'
] ]
}, },
banana: { banana: {
@ -18,14 +19,15 @@ module.exports = function ( grunt ) {
jsonlint: { jsonlint: {
all: [ all: [
'**/*.json', '**/*.json',
'.stylelintrc', '!node_modules/**',
'!node_modules/**' '!vendor/**'
] ]
}, },
stylelint: { stylelint: {
all: [ all: [
'**/*.css', '**/*.css',
'!node_modules/**' '!node_modules/**',
'!vendor/**'
] ]
} }
} ); } );