Use json extension for .stylelintrc

Bug: T173516
Change-Id: I4b5293769f5cce7ebd86218d9629a272695bbbbb
This commit is contained in:
Umherirrender 2017-08-19 10:27:54 +02:00
parent a07591e5d9
commit 84b9870e88
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/**'
]
}
} );