Skip to content

Commit

Permalink
linter cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jzyinq committed Mar 23, 2024
1 parent a189528 commit d191a84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@ linters-settings:
linters:
disable-all: true
enable:
# - revive
- ifshort
# - revive # This will wait for it's turn to be enabled
- staticcheck
- gosec
- dogsled
- godox
# - godox # too much FIXMEs in the code now :D
- megacheck
- govet
- gocyclo
Expand Down
2 changes: 1 addition & 1 deletion gojira/dayview.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type DayView struct {
latestIssuesStatus *tview.TextView
}

func NewDayView() *DayView {
func NewDayView() *DayView { //nolint:funlen
dayView := &DayView{
worklogList: tview.NewTable(),
worklogStatus: tview.NewTextView().SetChangedFunc(func() {
Expand Down

0 comments on commit d191a84

Please sign in to comment.