Merge pull request #325 from numtide/fix/global-excludes

fix: configure toml keys for config fields
This commit is contained in:
mergify[bot] 2024-07-01 15:52:48 +00:00 committed by GitHub
commit 33d2f60701
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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"`
}