Skip to content

Commit ca42c6c

Browse files
committed
chore: simplify linter command in Makefile and remove unused error variable
- Update the linter command in the Makefile to remove the installation message for golangci-lint - Remove the unused error variable from the wizardModel struct in wizard.go This cleanup enhances the clarity of the Makefile and optimizes the wizard model structure.
1 parent c16a7a3 commit ca42c6c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ run: build
3737

3838
# Run linter (requires golangci-lint)
3939
lint:
40-
golangci-lint run || echo "Install golangci-lint: https://golangci-lint.run/usage/install/"
40+
golangci-lint run
4141

4242
# Format code
4343
fmt:

internal/tui/wizard.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ type wizardModel struct {
3030
textInput textinput.Model
3131
cursor int
3232
filtered []string
33-
err error
3433
quitting bool
3534
completed bool
3635
defaultDir string

0 commit comments

Comments
 (0)