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