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: {
all: [
'**/*.js',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
},
stylelint: {
all: [
'**/*.css',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
},
banana: {
@ -28,7 +30,8 @@ module.exports = function ( grunt ) {
all: [
'*.json',
'**/*.json',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
}
} );