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: {
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/**'
]
}
} );