mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-23 14:46:44 +00:00
Use json extension for .stylelintrc
Bug: T173516 Change-Id: I8e963c76fa7af376f410c4e4294f5ada2cb932db
This commit is contained in:
parent
a850e59867
commit
73dc92fb62
10
Gruntfile.js
10
Gruntfile.js
|
@ -13,7 +13,8 @@ module.exports = function ( grunt ) {
|
|||
all: [
|
||||
'**/*.js',
|
||||
'!node_modules/**',
|
||||
'!lib/**'
|
||||
'!lib/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
banana: {
|
||||
|
@ -22,14 +23,15 @@ module.exports = function ( grunt ) {
|
|||
jsonlint: {
|
||||
all: [
|
||||
'**/*.json',
|
||||
'.stylelintrc',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
stylelint: {
|
||||
all: [
|
||||
'**/*.css',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
|
Loading…
Reference in a new issue