mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-06 19:39:19 -04:00
docs: uppercase command option descriptions for consistency (#4135)
This commit is contained in:
parent
0605100cb9
commit
f714c5d842
1 changed files with 2 additions and 2 deletions
|
@ -149,10 +149,10 @@ func (e *Executor) needVersionOption() bool {
|
|||
}
|
||||
|
||||
func initRootFlagSet(fs *pflag.FlagSet, cfg *config.Config, needVersionOption bool) {
|
||||
fs.BoolVarP(&cfg.Run.IsVerbose, "verbose", "v", false, wh("verbose output"))
|
||||
fs.BoolVarP(&cfg.Run.IsVerbose, "verbose", "v", false, wh("Verbose output"))
|
||||
|
||||
var silent bool
|
||||
fs.BoolVarP(&silent, "silent", "s", false, wh("disables congrats outputs"))
|
||||
fs.BoolVarP(&silent, "silent", "s", false, wh("Disables congrats outputs"))
|
||||
if err := fs.MarkHidden("silent"); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue