Merge pull request #18777 from shivapoudel/fix/textdomain-check
Exclude textdomain check for libraries
This commit is contained in:
commit
3146f87942
13
Gruntfile.js
13
Gruntfile.js
|
@ -230,12 +230,13 @@ module.exports = function( grunt ) {
|
||||||
},
|
},
|
||||||
files: {
|
files: {
|
||||||
src: [
|
src: [
|
||||||
'**/*.php', // Include all files
|
'**/*.php', // Include all files
|
||||||
'!apigen/**', // Exclude apigen/
|
'!apigen/**', // Exclude apigen/
|
||||||
'!node_modules/**', // Exclude node_modules/
|
'!includes/libraries/**', // Exclude libraries/
|
||||||
'!tests/**', // Exclude tests/
|
'!node_modules/**', // Exclude node_modules/
|
||||||
'!vendor/**', // Exclude vendor/
|
'!tests/**', // Exclude tests/
|
||||||
'!tmp/**' // Exclude tmp/
|
'!vendor/**', // Exclude vendor/
|
||||||
|
'!tmp/**' // Exclude tmp/
|
||||||
],
|
],
|
||||||
expand: true
|
expand: true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue