Use json extension for .stylelintrc

Bug: T173516
Change-Id: I8e963c76fa7af376f410c4e4294f5ada2cb932db
This commit is contained in:
Umherirrender 2017-08-19 09:49:33 +02:00
parent a850e59867
commit 73dc92fb62
2 changed files with 6 additions and 4 deletions

View file

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