fix: configure toml tags for config fields

Signed-off-by: Brian McGee <brian@bmcgee.ie>
This commit is contained in:
Brian McGee 2024-07-01 14:20:22 +01:00
parent ab9f831d72
commit 2e05603d1e
No known key found for this signature in database
GPG Key ID: D49016E76AD1E8C0
2 changed files with 7 additions and 7 deletions

View File

@ -10,8 +10,8 @@ import (
type Config struct {
Global struct {
// Excludes is an optional list of glob patterns used to exclude certain files from all formatters.
Excludes []string
}
Excludes []string `toml:"excludes"`
} `toml:"global"`
Formatters map[string]*Formatter `toml:"formatter"`
}

View File

@ -2,13 +2,13 @@ package config
type Formatter struct {
// Command is the command to invoke when applying this Formatter.
Command string
Command string `toml:"command"`
// Options are an optional list of args to be passed to Command.
Options []string
Options []string `toml:"options,omitempty"`
// Includes is a list of glob patterns used to determine whether this Formatter should be applied against a path.
Includes []string
Includes []string `toml:"includes,omitempty"`
// Excludes is an optional list of glob patterns used to exclude certain files from this Formatter.
Excludes []string
Excludes []string `toml:"excludes,omitempty"`
// Indicates the order of precedence when executing this Formatter in a sequence of Formatters.
Priority int
Priority int `toml:"priority,omitempty"`
}