mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-27 09:43:06 +00:00
Use json extension for .stylelintrc
Bug: T173516 Change-Id: I947590725970745378da0b4e85b254efa0c2f169
This commit is contained in:
parent
cd8edc16c5
commit
86570ed5c3
10
Gruntfile.js
10
Gruntfile.js
|
@ -18,20 +18,22 @@ module.exports = function ( grunt ) {
|
||||||
eslint: {
|
eslint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.js',
|
'**/*.js',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
jsonlint: {
|
jsonlint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.json',
|
'**/*.json',
|
||||||
'.stylelintrc',
|
'!node_modules/**',
|
||||||
'!node_modules/**'
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
stylelint: {
|
stylelint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.css',
|
'**/*.css',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Reference in a new issue