Preparing report...

Report for github.com/micro-editor/tcell

A+    Excellent!    Found 18 issues across 72 files

Tweet

gofmt90%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


gocyclo93%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.

    • tcell/terminfo/terminfo.go
    • Line 368: warning: cyclomatic complexity 74 of function (*Terminfo).TParm() is high (> 15) (gocyclo)
    • Line 739: warning: cyclomatic complexity 22 of function LookupTerminfo() is high (> 15) (gocyclo)
    • tcell/terminfo/mkinfo.go
    • Line 77: warning: cyclomatic complexity 24 of function unescape() is high (> 15) (gocyclo)
    • Line 203: warning: cyclomatic complexity 20 of function getinfo() is high (> 15) (gocyclo)
    • tcell/tscreen.go
    • Line 1155: warning: cyclomatic complexity 32 of function (*tScreen).parseSgrMouse() is high (> 15) (gocyclo)
    • Line 575: warning: cyclomatic complexity 23 of function (*tScreen).sendFgBg() is high (> 15) (gocyclo)
    • Line 639: warning: cyclomatic complexity 23 of function (*tScreen).drawCell() is high (> 15) (gocyclo)
    • Line 1465: warning: cyclomatic complexity 21 of function (*tScreen).collectEventsFromInput() is high (> 15) (gocyclo)
    • Line 1555: warning: cyclomatic complexity 17 of function (*tScreen).mainLoop() is high (> 15) (gocyclo)

golint91%

Golint is a linter for Go source code.

    • tcell/screen.go
    • Line 266: warning: exported const MouseButtonEvents should have comment (or a comment on this block) or be unexported (golint)
    • tcell/views/sstext.go
    • Line 91: warning: comment on exported method SimpleStyledText.RegisterStyle should be of the form "RegisterStyle ..." (golint)
    • tcell/views/sstextbar.go
    • Line 58: warning: exported method SimpleStyledTextBar.RegisterRightStyle should have comment or be unexported (golint)
    • Line 63: warning: exported method SimpleStyledTextBar.RegisterLeftStyle should have comment or be unexported (golint)
    • Line 68: warning: exported method SimpleStyledTextBar.RegisterCenterStyle should have comment or be unexported (golint)
    • Line 73: warning: exported method SimpleStyledTextBar.Size should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign94%

IneffAssign detects ineffectual assignments in Go code.

    • tcell/terminfo/extended/extended.go
    • Line 24: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/aixterm; to add it: (ineffassign)
    • Line 25: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/alacritty; to add it: (ineffassign)
    • Line 26: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/ansi; to add it: (ineffassign)
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/b/beterm; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/c/cygwin; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/d/dtterm; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/e/emacs; to add it: (ineffassign)
    • Line 31: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/f/foot; to add it: (ineffassign)
    • Line 32: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/g/gnome; to add it: (ineffassign)
    • Line 33: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/h/hpterm; to add it: (ineffassign)
    • Line 34: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/konsole; to add it: (ineffassign)
    • Line 35: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/kterm; to add it: (ineffassign)
    • Line 36: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/l/linux; to add it: (ineffassign)
    • Line 37: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/p/pcansi; to add it: (ineffassign)
    • Line 38: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/r/rxvt; to add it: (ineffassign)
    • Line 39: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/screen; to add it: (ineffassign)
    • Line 40: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/simpleterm; to add it: (ineffassign)
    • Line 42: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/termite; to add it: (ineffassign)
    • Line 43: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/tmux; to add it: (ineffassign)
    • Line 44: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt100; to add it: (ineffassign)
    • Line 45: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt102; to add it: (ineffassign)
    • Line 46: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt220; to add it: (ineffassign)
    • Line 47: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt320; to add it: (ineffassign)
    • Line 48: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt400; to add it: (ineffassign)
    • Line 49: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt420; to add it: (ineffassign)
    • Line 50: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt52; to add it: (ineffassign)
    • Line 51: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy50; to add it: (ineffassign)
    • Line 52: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy60; to add it: (ineffassign)
    • Line 53: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi; to add it: (ineffassign)
    • Line 54: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xfce; to add it: (ineffassign)
    • Line 56: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty; to add it: (ineffassign)
    • Line 57: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite; to add it: (ineffassign)
    • Line 24: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/aixterm (invalid package name: "") (ineffassign)
    • Line 25: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/alacritty (invalid package name: "") (ineffassign)
    • Line 26: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/b/beterm (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/c/cygwin (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/d/dtterm (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/e/emacs (invalid package name: "") (ineffassign)
    • Line 31: warning: could not import github.com/micro-editor/tcell/v2/terminfo/f/foot (invalid package name: "") (ineffassign)
    • Line 32: warning: could not import github.com/micro-editor/tcell/v2/terminfo/g/gnome (invalid package name: "") (ineffassign)
    • Line 33: warning: could not import github.com/micro-editor/tcell/v2/terminfo/h/hpterm (invalid package name: "") (ineffassign)
    • Line 34: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/konsole (invalid package name: "") (ineffassign)
    • Line 35: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/kterm (invalid package name: "") (ineffassign)
    • Line 36: warning: could not import github.com/micro-editor/tcell/v2/terminfo/l/linux (invalid package name: "") (ineffassign)
    • Line 37: warning: could not import github.com/micro-editor/tcell/v2/terminfo/p/pcansi (invalid package name: "") (ineffassign)
    • Line 38: warning: could not import github.com/micro-editor/tcell/v2/terminfo/r/rxvt (invalid package name: "") (ineffassign)
    • Line 39: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/screen (invalid package name: "") (ineffassign)
    • Line 40: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/simpleterm (invalid package name: "") (ineffassign)
    • Line 42: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/termite (invalid package name: "") (ineffassign)
    • Line 43: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/tmux (invalid package name: "") (ineffassign)
    • Line 44: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 45: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 46: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • Line 47: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt320 (invalid package name: "") (ineffassign)
    • Line 48: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt400 (invalid package name: "") (ineffassign)
    • Line 49: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt420 (invalid package name: "") (ineffassign)
    • Line 50: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt52 (invalid package name: "") (ineffassign)
    • Line 51: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy50 (invalid package name: "") (ineffassign)
    • Line 52: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy60 (invalid package name: "") (ineffassign)
    • Line 53: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi (invalid package name: "") (ineffassign)
    • Line 54: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xfce (invalid package name: "") (ineffassign)
    • Line 56: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty (invalid package name: "") (ineffassign)
    • Line 57: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite (invalid package name: "") (ineffassign)
    • Line 24: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/aixterm; to add it: (ineffassign)
    • Line 25: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/alacritty; to add it: (ineffassign)
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/b/beterm; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/c/cygwin; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/d/dtterm; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/e/emacs; to add it: (ineffassign)
    • Line 31: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/f/foot; to add it: (ineffassign)
    • Line 32: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/g/gnome; to add it: (ineffassign)
    • Line 33: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/h/hpterm; to add it: (ineffassign)
    • Line 34: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/konsole; to add it: (ineffassign)
    • Line 35: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/kterm; to add it: (ineffassign)
    • Line 36: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/l/linux; to add it: (ineffassign)
    • Line 37: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/p/pcansi; to add it: (ineffassign)
    • Line 38: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/r/rxvt; to add it: (ineffassign)
    • Line 39: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/screen; to add it: (ineffassign)
    • Line 40: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/simpleterm; to add it: (ineffassign)
    • Line 42: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/termite; to add it: (ineffassign)
    • Line 43: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/tmux; to add it: (ineffassign)
    • Line 47: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt320; to add it: (ineffassign)
    • Line 48: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt400; to add it: (ineffassign)
    • Line 49: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt420; to add it: (ineffassign)
    • Line 50: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt52; to add it: (ineffassign)
    • Line 51: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy50; to add it: (ineffassign)
    • Line 52: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy60; to add it: (ineffassign)
    • Line 53: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi; to add it: (ineffassign)
    • Line 54: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xfce; to add it: (ineffassign)
    • Line 56: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty; to add it: (ineffassign)
    • Line 57: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite; to add it: (ineffassign)
    • Line 24: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/aixterm (invalid package name: "") (ineffassign)
    • Line 25: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/alacritty (invalid package name: "") (ineffassign)
    • Line 26: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/b/beterm (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/c/cygwin (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/d/dtterm (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/e/emacs (invalid package name: "") (ineffassign)
    • Line 31: warning: could not import github.com/micro-editor/tcell/v2/terminfo/f/foot (invalid package name: "") (ineffassign)
    • Line 32: warning: could not import github.com/micro-editor/tcell/v2/terminfo/g/gnome (invalid package name: "") (ineffassign)
    • Line 33: warning: could not import github.com/micro-editor/tcell/v2/terminfo/h/hpterm (invalid package name: "") (ineffassign)
    • Line 34: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/konsole (invalid package name: "") (ineffassign)
    • Line 35: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/kterm (invalid package name: "") (ineffassign)
    • Line 36: warning: could not import github.com/micro-editor/tcell/v2/terminfo/l/linux (invalid package name: "") (ineffassign)
    • Line 37: warning: could not import github.com/micro-editor/tcell/v2/terminfo/p/pcansi (invalid package name: "") (ineffassign)
    • Line 38: warning: could not import github.com/micro-editor/tcell/v2/terminfo/r/rxvt (invalid package name: "") (ineffassign)
    • Line 39: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/screen (invalid package name: "") (ineffassign)
    • Line 40: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/simpleterm (invalid package name: "") (ineffassign)
    • Line 42: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/termite (invalid package name: "") (ineffassign)
    • Line 43: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/tmux (invalid package name: "") (ineffassign)
    • Line 44: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 45: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 46: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • Line 47: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt320 (invalid package name: "") (ineffassign)
    • Line 48: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt400 (invalid package name: "") (ineffassign)
    • Line 49: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt420 (invalid package name: "") (ineffassign)
    • Line 50: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt52 (invalid package name: "") (ineffassign)
    • Line 51: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy50 (invalid package name: "") (ineffassign)
    • Line 52: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy60 (invalid package name: "") (ineffassign)
    • Line 53: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi (invalid package name: "") (ineffassign)
    • Line 54: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xfce (invalid package name: "") (ineffassign)
    • Line 56: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty (invalid package name: "") (ineffassign)
    • Line 57: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite (invalid package name: "") (ineffassign)
    • tcell/terminfo/base/base.go
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/ansi; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt100; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt102; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt220; to add it: (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/ansi; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt100; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt102; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt220; to add it: (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • /home/shawn/mygo/src/github.com/gojp/goreportcard/_repos/src/github.com/micro-editor/tcell/terminfo/base/base.go
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/ansi; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt100; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt102; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt220; to add it: (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/ansi; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt100; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt102; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt220; to add it: (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/ansi; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt100; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt102; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt220; to add it: (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • /home/shawn/mygo/src/github.com/gojp/goreportcard/_repos/src/github.com/micro-editor/tcell/terminfo/extended/extended.go
    • Line 24: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/aixterm; to add it: (ineffassign)
    • Line 25: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/alacritty; to add it: (ineffassign)
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/b/beterm; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/c/cygwin; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/d/dtterm; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/e/emacs; to add it: (ineffassign)
    • Line 31: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/f/foot; to add it: (ineffassign)
    • Line 32: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/g/gnome; to add it: (ineffassign)
    • Line 33: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/h/hpterm; to add it: (ineffassign)
    • Line 34: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/konsole; to add it: (ineffassign)
    • Line 35: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/kterm; to add it: (ineffassign)
    • Line 36: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/l/linux; to add it: (ineffassign)
    • Line 37: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/p/pcansi; to add it: (ineffassign)
    • Line 38: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/r/rxvt; to add it: (ineffassign)
    • Line 39: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/screen; to add it: (ineffassign)
    • Line 40: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/simpleterm; to add it: (ineffassign)
    • Line 42: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/termite; to add it: (ineffassign)
    • Line 43: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/tmux; to add it: (ineffassign)
    • Line 47: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt320; to add it: (ineffassign)
    • Line 48: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt400; to add it: (ineffassign)
    • Line 49: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt420; to add it: (ineffassign)
    • Line 50: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt52; to add it: (ineffassign)
    • Line 51: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy50; to add it: (ineffassign)
    • Line 52: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy60; to add it: (ineffassign)
    • Line 53: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi; to add it: (ineffassign)
    • Line 54: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xfce; to add it: (ineffassign)
    • Line 56: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty; to add it: (ineffassign)
    • Line 57: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite; to add it: (ineffassign)
    • Line 24: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/aixterm (invalid package name: "") (ineffassign)
    • Line 25: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/alacritty (invalid package name: "") (ineffassign)
    • Line 26: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/b/beterm (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/c/cygwin (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/d/dtterm (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/e/emacs (invalid package name: "") (ineffassign)
    • Line 31: warning: could not import github.com/micro-editor/tcell/v2/terminfo/f/foot (invalid package name: "") (ineffassign)
    • Line 32: warning: could not import github.com/micro-editor/tcell/v2/terminfo/g/gnome (invalid package name: "") (ineffassign)
    • Line 33: warning: could not import github.com/micro-editor/tcell/v2/terminfo/h/hpterm (invalid package name: "") (ineffassign)
    • Line 34: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/konsole (invalid package name: "") (ineffassign)
    • Line 35: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/kterm (invalid package name: "") (ineffassign)
    • Line 36: warning: could not import github.com/micro-editor/tcell/v2/terminfo/l/linux (invalid package name: "") (ineffassign)
    • Line 37: warning: could not import github.com/micro-editor/tcell/v2/terminfo/p/pcansi (invalid package name: "") (ineffassign)
    • Line 38: warning: could not import github.com/micro-editor/tcell/v2/terminfo/r/rxvt (invalid package name: "") (ineffassign)
    • Line 39: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/screen (invalid package name: "") (ineffassign)
    • Line 40: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/simpleterm (invalid package name: "") (ineffassign)
    • Line 42: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/termite (invalid package name: "") (ineffassign)
    • Line 43: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/tmux (invalid package name: "") (ineffassign)
    • Line 44: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 45: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 46: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • Line 47: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt320 (invalid package name: "") (ineffassign)
    • Line 48: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt400 (invalid package name: "") (ineffassign)
    • Line 49: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt420 (invalid package name: "") (ineffassign)
    • Line 50: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt52 (invalid package name: "") (ineffassign)
    • Line 51: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy50 (invalid package name: "") (ineffassign)
    • Line 52: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy60 (invalid package name: "") (ineffassign)
    • Line 53: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi (invalid package name: "") (ineffassign)
    • Line 54: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xfce (invalid package name: "") (ineffassign)
    • Line 56: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty (invalid package name: "") (ineffassign)
    • Line 57: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite (invalid package name: "") (ineffassign)
    • Line 24: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/aixterm; to add it: (ineffassign)
    • Line 25: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/alacritty; to add it: (ineffassign)
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/b/beterm; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/c/cygwin; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/d/dtterm; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/e/emacs; to add it: (ineffassign)
    • Line 31: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/f/foot; to add it: (ineffassign)
    • Line 32: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/g/gnome; to add it: (ineffassign)
    • Line 33: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/h/hpterm; to add it: (ineffassign)
    • Line 34: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/konsole; to add it: (ineffassign)
    • Line 35: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/kterm; to add it: (ineffassign)
    • Line 36: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/l/linux; to add it: (ineffassign)
    • Line 37: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/p/pcansi; to add it: (ineffassign)
    • Line 38: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/r/rxvt; to add it: (ineffassign)
    • Line 39: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/screen; to add it: (ineffassign)
    • Line 40: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/simpleterm; to add it: (ineffassign)
    • Line 42: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/termite; to add it: (ineffassign)
    • Line 43: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/tmux; to add it: (ineffassign)
    • Line 47: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt320; to add it: (ineffassign)
    • Line 48: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt400; to add it: (ineffassign)
    • Line 49: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt420; to add it: (ineffassign)
    • Line 50: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt52; to add it: (ineffassign)
    • Line 51: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy50; to add it: (ineffassign)
    • Line 52: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy60; to add it: (ineffassign)
    • Line 53: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi; to add it: (ineffassign)
    • Line 54: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xfce; to add it: (ineffassign)
    • Line 56: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty; to add it: (ineffassign)
    • Line 57: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite; to add it: (ineffassign)
    • Line 24: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/aixterm (invalid package name: "") (ineffassign)
    • Line 25: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/alacritty (invalid package name: "") (ineffassign)
    • Line 26: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/b/beterm (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/c/cygwin (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/d/dtterm (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/e/emacs (invalid package name: "") (ineffassign)
    • Line 31: warning: could not import github.com/micro-editor/tcell/v2/terminfo/f/foot (invalid package name: "") (ineffassign)
    • Line 32: warning: could not import github.com/micro-editor/tcell/v2/terminfo/g/gnome (invalid package name: "") (ineffassign)
    • Line 33: warning: could not import github.com/micro-editor/tcell/v2/terminfo/h/hpterm (invalid package name: "") (ineffassign)
    • Line 34: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/konsole (invalid package name: "") (ineffassign)
    • Line 35: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/kterm (invalid package name: "") (ineffassign)
    • Line 36: warning: could not import github.com/micro-editor/tcell/v2/terminfo/l/linux (invalid package name: "") (ineffassign)
    • Line 37: warning: could not import github.com/micro-editor/tcell/v2/terminfo/p/pcansi (invalid package name: "") (ineffassign)
    • Line 38: warning: could not import github.com/micro-editor/tcell/v2/terminfo/r/rxvt (invalid package name: "") (ineffassign)
    • Line 39: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/screen (invalid package name: "") (ineffassign)
    • Line 40: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/simpleterm (invalid package name: "") (ineffassign)
    • Line 42: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/termite (invalid package name: "") (ineffassign)
    • Line 43: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/tmux (invalid package name: "") (ineffassign)
    • Line 44: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 45: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 46: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • Line 47: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt320 (invalid package name: "") (ineffassign)
    • Line 48: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt400 (invalid package name: "") (ineffassign)
    • Line 49: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt420 (invalid package name: "") (ineffassign)
    • Line 50: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt52 (invalid package name: "") (ineffassign)
    • Line 51: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy50 (invalid package name: "") (ineffassign)
    • Line 52: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy60 (invalid package name: "") (ineffassign)
    • Line 53: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi (invalid package name: "") (ineffassign)
    • Line 54: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xfce (invalid package name: "") (ineffassign)
    • Line 56: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty (invalid package name: "") (ineffassign)
    • Line 57: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite (invalid package name: "") (ineffassign)
    • Line 24: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/aixterm; to add it: (ineffassign)
    • Line 25: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/a/alacritty; to add it: (ineffassign)
    • Line 27: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/b/beterm; to add it: (ineffassign)
    • Line 28: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/c/cygwin; to add it: (ineffassign)
    • Line 29: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/d/dtterm; to add it: (ineffassign)
    • Line 30: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/e/emacs; to add it: (ineffassign)
    • Line 31: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/f/foot; to add it: (ineffassign)
    • Line 32: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/g/gnome; to add it: (ineffassign)
    • Line 33: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/h/hpterm; to add it: (ineffassign)
    • Line 34: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/konsole; to add it: (ineffassign)
    • Line 35: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/k/kterm; to add it: (ineffassign)
    • Line 36: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/l/linux; to add it: (ineffassign)
    • Line 37: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/p/pcansi; to add it: (ineffassign)
    • Line 38: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/r/rxvt; to add it: (ineffassign)
    • Line 39: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/screen; to add it: (ineffassign)
    • Line 40: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/s/simpleterm; to add it: (ineffassign)
    • Line 42: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/termite; to add it: (ineffassign)
    • Line 43: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/t/tmux; to add it: (ineffassign)
    • Line 47: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt320; to add it: (ineffassign)
    • Line 48: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt400; to add it: (ineffassign)
    • Line 49: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt420; to add it: (ineffassign)
    • Line 50: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/v/vt52; to add it: (ineffassign)
    • Line 51: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy50; to add it: (ineffassign)
    • Line 52: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy60; to add it: (ineffassign)
    • Line 53: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi; to add it: (ineffassign)
    • Line 54: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xfce; to add it: (ineffassign)
    • Line 56: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty; to add it: (ineffassign)
    • Line 57: warning: no required module provides package github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite; to add it: (ineffassign)
    • Line 24: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/aixterm (invalid package name: "") (ineffassign)
    • Line 25: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/alacritty (invalid package name: "") (ineffassign)
    • Line 26: warning: could not import github.com/micro-editor/tcell/v2/terminfo/a/ansi (invalid package name: "") (ineffassign)
    • Line 27: warning: could not import github.com/micro-editor/tcell/v2/terminfo/b/beterm (invalid package name: "") (ineffassign)
    • Line 28: warning: could not import github.com/micro-editor/tcell/v2/terminfo/c/cygwin (invalid package name: "") (ineffassign)
    • Line 29: warning: could not import github.com/micro-editor/tcell/v2/terminfo/d/dtterm (invalid package name: "") (ineffassign)
    • Line 30: warning: could not import github.com/micro-editor/tcell/v2/terminfo/e/emacs (invalid package name: "") (ineffassign)
    • Line 31: warning: could not import github.com/micro-editor/tcell/v2/terminfo/f/foot (invalid package name: "") (ineffassign)
    • Line 32: warning: could not import github.com/micro-editor/tcell/v2/terminfo/g/gnome (invalid package name: "") (ineffassign)
    • Line 33: warning: could not import github.com/micro-editor/tcell/v2/terminfo/h/hpterm (invalid package name: "") (ineffassign)
    • Line 34: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/konsole (invalid package name: "") (ineffassign)
    • Line 35: warning: could not import github.com/micro-editor/tcell/v2/terminfo/k/kterm (invalid package name: "") (ineffassign)
    • Line 36: warning: could not import github.com/micro-editor/tcell/v2/terminfo/l/linux (invalid package name: "") (ineffassign)
    • Line 37: warning: could not import github.com/micro-editor/tcell/v2/terminfo/p/pcansi (invalid package name: "") (ineffassign)
    • Line 38: warning: could not import github.com/micro-editor/tcell/v2/terminfo/r/rxvt (invalid package name: "") (ineffassign)
    • Line 39: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/screen (invalid package name: "") (ineffassign)
    • Line 40: warning: could not import github.com/micro-editor/tcell/v2/terminfo/s/simpleterm (invalid package name: "") (ineffassign)
    • Line 42: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/termite (invalid package name: "") (ineffassign)
    • Line 43: warning: could not import github.com/micro-editor/tcell/v2/terminfo/t/tmux (invalid package name: "") (ineffassign)
    • Line 44: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt100 (invalid package name: "") (ineffassign)
    • Line 45: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt102 (invalid package name: "") (ineffassign)
    • Line 46: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt220 (invalid package name: "") (ineffassign)
    • Line 47: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt320 (invalid package name: "") (ineffassign)
    • Line 48: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt400 (invalid package name: "") (ineffassign)
    • Line 49: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt420 (invalid package name: "") (ineffassign)
    • Line 50: warning: could not import github.com/micro-editor/tcell/v2/terminfo/v/vt52 (invalid package name: "") (ineffassign)
    • Line 51: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy50 (invalid package name: "") (ineffassign)
    • Line 52: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy60 (invalid package name: "") (ineffassign)
    • Line 53: warning: could not import github.com/micro-editor/tcell/v2/terminfo/w/wy99_ansi (invalid package name: "") (ineffassign)
    • Line 54: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xfce (invalid package name: "") (ineffassign)
    • Line 56: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_kitty (invalid package name: "") (ineffassign)
    • Line 57: warning: could not import github.com/micro-editor/tcell/v2/terminfo/x/xterm_termite (invalid package name: "") (ineffassign)

misspell95%

Misspell Finds commonly misspelled English words

    • tcell/doc.go
    • Line 39: warning: "unneccessarily" is a misspelling of "unnecessarily" (misspell)