mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 02:59:09 -07:00
chore(lint): add various nolint directives, where appropriate
This commit is contained in:
4
tty.go
4
tty.go
@@ -42,7 +42,7 @@ func (p *Program) restoreTerminalState() error {
|
||||
p.renderer.exitAltScreen()
|
||||
|
||||
// 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() {
|
||||
select {
|
||||
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
|
||||
// cancelReader's cancel function has returned true even
|
||||
// though it was not able to cancel the read.
|
||||
|
||||
Reference in New Issue
Block a user