mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-12-18 17:23:11 +00:00
Merge "build: Simplify linter configs" into REL1_31
This commit is contained in:
commit
0ce87f0aa1
|
@ -9,11 +9,7 @@ module.exports = function ( grunt ) {
|
|||
|
||||
grunt.initConfig( {
|
||||
eslint: {
|
||||
all: [
|
||||
'**/*.js',
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
all: '.'
|
||||
},
|
||||
stylelint: {
|
||||
options: {
|
||||
|
@ -21,7 +17,6 @@ module.exports = function ( grunt ) {
|
|||
},
|
||||
all: [
|
||||
'**/*.{css,less}',
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
|
|
|
@ -12,5 +12,8 @@
|
|||
"grunt-stylelint": "0.9.0",
|
||||
"stylelint": "8.2.0",
|
||||
"stylelint-config-wikimedia": "0.4.2"
|
||||
}
|
||||
},
|
||||
"eslintIgnore": [
|
||||
"vendor/**"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue