mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-23 15:36:58 +00:00
Ignore docs folder in all grunt tasks
Change-Id: I9938114502189ed5cd472f4782d2974d5a182283
This commit is contained in:
parent
0c688e349a
commit
ea89b7d431
|
@ -16,13 +16,15 @@ module.exports = function ( grunt ) {
|
|||
},
|
||||
all: [
|
||||
'**/*.js',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!docs/**'
|
||||
]
|
||||
},
|
||||
jscs: {
|
||||
src: [
|
||||
'<%= jshint.all %>',
|
||||
'!tests/externals/**'
|
||||
'!tests/externals/**',
|
||||
'!docs/**'
|
||||
]
|
||||
},
|
||||
banana: {
|
||||
|
@ -39,7 +41,8 @@ module.exports = function ( grunt ) {
|
|||
jsonlint: {
|
||||
all: [
|
||||
'**/*.json',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!docs/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
|
Loading…
Reference in a new issue