mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-11 16:49:26 +00:00
Use tabs in json
Exclude composer vendor folder from build Change-Id: I9e28fc2fc7a4ee53dd5bdc8da78822ebb8a806ca
This commit is contained in:
parent
ded809a42a
commit
696f1ced1f
|
@ -19,7 +19,8 @@ module.exports = function ( grunt ) {
|
|||
'**/*.js',
|
||||
'{.jsduck,build}/**/*.js',
|
||||
'modules/**/*.js',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
banana: conf.MessagesDirs,
|
||||
|
@ -27,14 +28,16 @@ module.exports = function ( grunt ) {
|
|||
all: [
|
||||
'**/*.css',
|
||||
'**/*.less',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
jsonlint: {
|
||||
all: [
|
||||
'**/*.json',
|
||||
'.stylelintrc',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
|
Loading…
Reference in a new issue