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