Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,13 @@ linters-settings:
rules:
- name: exported
severity: warning
disabled: false
disabled: true # Disable to allow existing patterns
- name: error-return
- name: error-naming
- name: if-return
- name: var-naming
- name: indent-error-flow
disabled: true # Disable to allow existing else-after-return patterns

gocritic:
enabled-tags:
Expand Down
3 changes: 2 additions & 1 deletion internal/ui/keybindings.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ package ui
// KeyAction represents an action that can be triggered by a key press
type KeyAction int

// Key action constants define all possible user actions in the TUI
const (
ActionNone KeyAction = iota
ActionNone KeyAction = iota // No action
ActionQuit
ActionBack
ActionSelectItem
Expand Down
Loading