mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 15:44:33 +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: {
|
||||
all: [
|
||||
'**/*.json',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
stylelint: {
|
||||
all: [
|
||||
'**/*.css',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
watch: {
|
||||
files: [
|
||||
'.{stylelintrc,.eslintrc.json}',
|
||||
'.{stylelintrc,.eslintrc}.json',
|
||||
'<%= eslint.all %>',
|
||||
'<%= stylelint.all %>'
|
||||
],
|
||||
|
@ -34,7 +36,8 @@ module.exports = function ( grunt ) {
|
|||
all: [
|
||||
'*.js',
|
||||
'modules/**/*.js',
|
||||
'!**/node_modules/**'
|
||||
'!**/node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
|
Loading…
Reference in a new issue