Skip to content

Commit

Permalink
docs: update configuration example
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Sep 24, 2024
1 parent 5f4c5fe commit cca673b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ ecosystem = "Go"
group = "dev"

# Actions to take for matching packages:
ignore = true # Ignore this package completely, including license scanning
license.ignore = true # Ignore the license of the package, if it is not already completely ignored at the top level
license.override = ["MIT", "0BSD"] # Override the license of the package, if it is not ignored
ignore = true # Ignore this package completely, including both reporting vulnerabilities and license violations
vulnerability.ignore = true # Ignore vulnerabilities for this package, while still checking the license (if not also ignored)
license.ignore = true # Ignore the license of the package, while still checking for vulnerabilities (if not also ignored)
license.override = ["MIT", "0BSD"] # Override the license of the package, if it is not ignored from license scanning completely

effectiveUntil = 2022-11-09 # Optional exception expiry date, after which the override will no longer apply
reason = "abc" # Optional reason for the override, to explain why it was added
Expand Down

0 comments on commit cca673b

Please sign in to comment.