Skip to content

Commit

Permalink
refactor: move field to end of struct
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Sep 18, 2024
1 parent 6176a25 commit 96e3b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ type ConfigManager struct {
type Config struct {
IgnoredVulns []IgnoreEntry `toml:"IgnoredVulns"`
PackageOverrides []PackageOverrideEntry `toml:"PackageOverrides"`
GoVersionOverride string `toml:"GoVersionOverride"`
// The path to config file that this config was loaded from,
// set by the scanner after having successfully parsed the file
LoadPath string `toml:"-"`
GoVersionOverride string `toml:"GoVersionOverride"`
}

type IgnoreEntry struct {
Expand Down

0 comments on commit 96e3b10

Please sign in to comment.