mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-23 15:56:59 +00:00
Use json extension for .stylelintrc
Bug: T173516 Change-Id: I2ffdd7d96dcd56e14c06b46ebb4239a2e6ee6054
This commit is contained in:
parent
87e17eca81
commit
a774b1a297
10
Gruntfile.js
10
Gruntfile.js
|
@ -13,7 +13,8 @@ module.exports = function ( grunt ) {
|
|||
all: [
|
||||
'**/*.js',
|
||||
'!modules/qrcode.js',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!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