mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 23:46:39 +00:00
Merge "Use json extension for .stylelintrc"
This commit is contained in:
commit
e4142790d7
11
Gruntfile.js
11
Gruntfile.js
|
@ -13,18 +13,20 @@ module.exports = function ( grunt ) {
|
||||||
jsonlint: {
|
jsonlint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.json',
|
'**/*.json',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
stylelint: {
|
stylelint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.css',
|
'**/*.css',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
files: [
|
files: [
|
||||||
'.{stylelintrc,.eslintrc.json}',
|
'.{stylelintrc,.eslintrc}.json',
|
||||||
'<%= eslint.all %>',
|
'<%= eslint.all %>',
|
||||||
'<%= stylelint.all %>'
|
'<%= stylelint.all %>'
|
||||||
],
|
],
|
||||||
|
@ -34,7 +36,8 @@ module.exports = function ( grunt ) {
|
||||||
all: [
|
all: [
|
||||||
'*.js',
|
'*.js',
|
||||||
'modules/**/*.js',
|
'modules/**/*.js',
|
||||||
'!**/node_modules/**'
|
'!**/node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Reference in a new issue