chore(lint): add various nolint directives, where appropriate

This commit is contained in:
Christian Rocha 2023-07-07 11:34:57 -04:00
parent b639c9bab2
commit ffad6555d5
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ import (
// return tea.Batch(someCommand, someOtherCommand) // return tea.Batch(someCommand, someOtherCommand)
// } // }
func Batch(cmds ...Cmd) Cmd { func Batch(cmds ...Cmd) Cmd {
var validCmds []Cmd var validCmds []Cmd //nolint:prealloc
for _, c := range cmds { for _, c := range cmds {
if c == nil { if c == nil {
continue continue

4
tty.go
View File

@ -42,7 +42,7 @@ func (p *Program) restoreTerminalState() error {
p.renderer.exitAltScreen() p.renderer.exitAltScreen()
// give the terminal a moment to catch up // give the terminal a moment to catch up
time.Sleep(time.Millisecond * 10) time.Sleep(time.Millisecond * 10) //nolint:gomnd
} }
} }
@ -87,7 +87,7 @@ func (p *Program) readLoop() {
func (p *Program) waitForReadLoop() { func (p *Program) waitForReadLoop() {
select { select {
case <-p.readLoopDone: case <-p.readLoopDone:
case <-time.After(500 * time.Millisecond): case <-time.After(500 * time.Millisecond): //nolint:gomnd
// The read loop hangs, which means the input // The read loop hangs, which means the input
// cancelReader's cancel function has returned true even // cancelReader's cancel function has returned true even
// though it was not able to cancel the read. // though it was not able to cancel the read.