Use json extension for .stylelintrc

Bug: T173516
Change-Id: I0d83079033747f00d13ef90249b16218b76348f8
This commit is contained in:
Umherirrender 2017-08-19 09:42:18 +02:00
parent cb2a80dab7
commit 63800fcc4d
2 changed files with 6 additions and 3 deletions

View file

@ -9,13 +9,15 @@ module.exports = function ( grunt ) {
eslint: { eslint: {
all: [ all: [
'**/*.js', '**/*.js',
'!node_modules/**' '!node_modules/**',
'!vendor/**'
] ]
}, },
stylelint: { stylelint: {
all: [ all: [
'**/*.css', '**/*.css',
'!node_modules/**' '!node_modules/**',
'!vendor/**'
] ]
}, },
banana: { banana: {
@ -28,7 +30,8 @@ module.exports = function ( grunt ) {
all: [ all: [
'*.json', '*.json',
'**/*.json', '**/*.json',
'!node_modules/**' '!node_modules/**',
'!vendor/**'
] ]
} }
} ); } );