fix some golint errors show in go report card

Signed-off-by: Liam Hampton <liam.hampton@ibm.com>
This commit is contained in:
Liam Hampton 2019-12-12 21:24:43 +00:00
parent 42b931bfe7
commit f29ad2ad48
4 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
package cli
// CommandCategories allows for category manipulation
type CommandCategories interface {
// AddCommand adds a command to a category, creating a new category if necessary.
AddCommand(category string, command *Command)

View File

@ -48,6 +48,7 @@ func (m *multiError) Errors() []error {
return errs
}
// ErrorFormatter is the interface that will format the error output
type ErrorFormatter interface {
Format(s fmt.State, verb rune)
}

View File

@ -72,7 +72,7 @@ func (f *PathFlag) Apply(set *flag.FlagSet) error {
return nil
}
// String looks up the value of a local PathFlag, returns
// Path looks up the value of a local PathFlag, returns
// "" if not found
func (c *Context) Path(name string) string {
if fs := lookupFlagSet(name, c); fs != nil {

View File

@ -138,7 +138,7 @@ func printFlagSuggestions(lastArg string, flags []Flag, writer io.Writer) {
if bflag, ok := flag.(*BoolFlag); ok && bflag.Hidden {
continue
}
for _, name := range flag.Names(){
for _, name := range flag.Names() {
name = strings.TrimSpace(name)
// this will get total count utf8 letters in flag name
count := utf8.RuneCountInString(name)