Merge branch 'master' into disable-default-queries

This commit is contained in:
David Verdeguer
2020-04-30 11:12:28 +02:00
committed by GitHub
12 changed files with 155 additions and 56 deletions

2
lib/config-utils.js generated
View File

@@ -88,7 +88,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);