mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-23 15:56:50 +00:00
Use json extension for .stylelintrc
Bug: T173516 Change-Id: I0d83079033747f00d13ef90249b16218b76348f8
This commit is contained in:
parent
cb2a80dab7
commit
63800fcc4d
|
@ -9,13 +9,15 @@ module.exports = function ( grunt ) {
|
||||||
eslint: {
|
eslint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.js',
|
'**/*.js',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
stylelint: {
|
stylelint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.css',
|
'**/*.css',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
banana: {
|
banana: {
|
||||||
|
@ -28,7 +30,8 @@ module.exports = function ( grunt ) {
|
||||||
all: [
|
all: [
|
||||||
'*.json',
|
'*.json',
|
||||||
'**/*.json',
|
'**/*.json',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Reference in a new issue