Skip to content

Commit

Permalink
Add info validator
Browse files Browse the repository at this point in the history
  • Loading branch information
eoftedal committed Nov 1, 2023
1 parent 2b47233 commit 6a51f65
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions repository/validate
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ Object.entries(jsRepo).forEach(([k, val]) => {
if (!v.severity) {
console.warn(" * " + k + " - Missing severity: " + JSON.stringify(v));
}
if (!v.info) {
console.warn(" * " + k + " - Missing info: " + JSON.stringify(v));
}
});
});

Expand Down

0 comments on commit 6a51f65

Please sign in to comment.