The default settings should not use [].

This commit is contained in:
Federico Builes
2022-06-08 18:28:10 +02:00
parent a51db20961
commit 20cca5c0c4
4 changed files with 4 additions and 6 deletions
Generated Vendored
+1 -2
View File
@@ -13706,8 +13706,7 @@ exports.CONFIG_FILEPATH = './.github/dependency-review.yml';
function readConfigFile(filePath = exports.CONFIG_FILEPATH) {
// By default we want to fail on all severities and allow all licenses.
const defaultOptions = {
fail_on_severity: 'low',
allow_licenses: []
fail_on_severity: 'low'
};
let data;
try {
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long