Use json extension for .stylelintrc

Bug: T173516
Change-Id: Iacceced4b25b59e32f38e53b9ec2dd9df8193477
This commit is contained in:
Umherirrender 2017-08-19 09:40:58 +02:00
parent 659e0963f1
commit fee338e719
2 changed files with 6 additions and 4 deletions

View file

@ -10,14 +10,16 @@ module.exports = function ( grunt ) {
all: [
'**/*.js',
'!resources/lib/**',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
},
stylelint: {
all: [
'**/*.{css,less}',
'!resources/lib/**',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
},
banana: {
@ -26,8 +28,8 @@ module.exports = function ( grunt ) {
jsonlint: {
all: [
'**/*.json',
'.stylelintrc',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
}
} );