Merge "Use json extension for .stylelintrc"

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

View file

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