From da9a4049de129d16c1a5f351cb8f880a099d9c9b Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 12 Mar 2021 01:43:13 +0100 Subject: [PATCH] Mark innocuous numbers as nolint --- progress/progress.go | 2 +- spinner/spinner.go | 20 +++++++++----------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/progress/progress.go b/progress/progress.go index ac37004..9cb3bf0 100644 --- a/progress/progress.go +++ b/progress/progress.go @@ -128,7 +128,7 @@ func NewModel(opts ...Option) (*Model, error) { func (m Model) View(percent float64) string { b := strings.Builder{} if m.ShowPercentage { - percentage := fmt.Sprintf(m.PercentFormat, percent*100) + percentage := fmt.Sprintf(m.PercentFormat, percent*100) //nolint:gomnd if m.PercentageStyle != nil { percentage = m.PercentageStyle.Styled(percentage) } diff --git a/spinner/spinner.go b/spinner/spinner.go index 456a86c..0c2a4d8 100644 --- a/spinner/spinner.go +++ b/spinner/spinner.go @@ -9,8 +9,6 @@ import ( "github.com/muesli/termenv" ) -const defaultFPS = time.Second / 10 - // Spinner is a set of frames used in animating the spinner. type Spinner struct { Frames []string @@ -21,39 +19,39 @@ var ( // Some spinners to choose from. You could also make your own. Line = Spinner{ Frames: []string{"|", "/", "-", "\\"}, - FPS: time.Second / 10, + FPS: time.Second / 10, //nolint:gomnd } Dot = Spinner{ Frames: []string{"⣾ ", "⣽ ", "⣻ ", "⢿ ", "⡿ ", "⣟ ", "⣯ ", "⣷ "}, - FPS: time.Second / 10, + FPS: time.Second / 10, //nolint:gomnd } MiniDot = Spinner{ Frames: []string{"⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"}, - FPS: time.Second / 12, + FPS: time.Second / 12, //nolint:gomnd } Jump = Spinner{ Frames: []string{"⢄", "⢂", "⢁", "⡁", "⡈", "⡐", "⡠"}, - FPS: time.Second / 10, + FPS: time.Second / 10, //nolint:gomnd } Pulse = Spinner{ Frames: []string{"█", "▓", "▒", "░"}, - FPS: time.Second / 8, + FPS: time.Second / 8, //nolint:gomnd } Points = Spinner{ Frames: []string{"∙∙∙", "●∙∙", "∙●∙", "∙∙●"}, - FPS: time.Second / 7, + FPS: time.Second / 7, //nolint:gomnd } Globe = Spinner{ Frames: []string{"🌍", "🌎", "🌏"}, - FPS: time.Second / 4, + FPS: time.Second / 4, //nolint:gomnd } Moon = Spinner{ Frames: []string{"🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘"}, - FPS: time.Second / 8, + FPS: time.Second / 8, //nolint:gomnd } Monkey = Spinner{ Frames: []string{"🙈", "🙉", "🙊"}, - FPS: time.Second / 3, + FPS: time.Second / 3, //nolint:gomnd } color = termenv.ColorProfile().Color