Merge "Add vendor to ignore for linters"
This commit is contained in:
@@ -2,3 +2,4 @@
|
|||||||
lib/*
|
lib/*
|
||||||
# Generated file that contains JSON. Would fail "Strings must use singlequote."
|
# Generated file that contains JSON. Would fail "Strings must use singlequote."
|
||||||
resources/js/ext.uls.webfonts.repository.js
|
resources/js/ext.uls.webfonts.repository.js
|
||||||
|
vendor/*
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ module.exports = function ( grunt ) {
|
|||||||
'**/*.js',
|
'**/*.js',
|
||||||
'!lib/**',
|
'!lib/**',
|
||||||
'!node_modules/**',
|
'!node_modules/**',
|
||||||
|
'!vendor/**',
|
||||||
'!resources/js/ext.uls.webfonts.repository.js'
|
'!resources/js/ext.uls.webfonts.repository.js'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -25,7 +26,8 @@ module.exports = function ( grunt ) {
|
|||||||
jsonlint: {
|
jsonlint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.json',
|
'**/*.json',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
banana: {
|
banana: {
|
||||||
|
|||||||
Reference in New Issue
Block a user