Merge "Add vendor to ignore for linters"

This commit is contained in:
jenkins-bot
2016-05-23 04:52:07 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 1 deletions

View File

@@ -2,3 +2,4 @@
lib/*
# Generated file that contains JSON. Would fail "Strings must use singlequote."
resources/js/ext.uls.webfonts.repository.js
vendor/*

View File

@@ -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: {