Use json extension for .stylelintrc

Bug: T173516
Change-Id: I947590725970745378da0b4e85b254efa0c2f169
This commit is contained in:
Umherirrender 2017-08-19 09:37:30 +02:00
parent cd8edc16c5
commit 86570ed5c3
2 changed files with 6 additions and 4 deletions

View file

@ -18,20 +18,22 @@ module.exports = function ( grunt ) {
eslint: {
all: [
'**/*.js',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
},
jsonlint: {
all: [
'**/*.json',
'.stylelintrc',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
},
stylelint: {
all: [
'**/*.css',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
}
} );