Merge branch 'master' into send-tool-names

This commit is contained in:
Kevin Sawicki 2020-04-29 08:10:14 -07:00 committed by GitHub
commit 0916a68508
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 55 additions and 47 deletions

2
lib/config-utils.js generated
View file

@ -84,7 +84,7 @@ function initConfig() {
});
}
const pathsIgnore = parsedYAML['paths-ignore'];
if (pathsIgnore && queries instanceof Array) {
if (pathsIgnore && pathsIgnore instanceof Array) {
pathsIgnore.forEach(path => {
if (typeof path === "string") {
config.pathsIgnore.push(path);