Use json extension for .stylelintrc

Bug: T173516
Change-Id: Ie9845533c08f8f879514904f1806c971681c5e65
This commit is contained in:
Umherirrender 2017-08-19 09:39:39 +02:00
parent 85fca5a602
commit 8a92f50587
2 changed files with 4 additions and 3 deletions

View file

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