chore: fix remaining lint issues (errcheck, govet) - #242
Open
iamlasse wants to merge 2 commits into
Open
Conversation
Add internal/commits with pure Normalize/validate functions enforcing the project's Conventional Commits rules (known type set, lowercase type, lowercase subject, 72-char subject limit, whitespace trimming, and 72-column body wrapping). Wire it into the CLI as 'nightshift commit normalize' (positional, --file, and stdin sources; --check to validate only), ship a commit-msg git hook under scripts/, and document the format and installation in docs/commit-messages.md. Nightshift-Task: commit-normalize Nightshift-Ref: https://github.com/marcus/nightshift
Auto-fixed govet 'inline' findings by replacing deprecated reflect.Ptr with reflect.Pointer in config.go, and explicitly discarded fmt.Fprintln return values in commit.go per existing codebase convention. Nightshift-Task: lint-fix Nightshift-Ref: https://github.com/marcus/nightshift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Mechanical lint cleanup — no behavioral changes.
Linter:
golangci-lintv2.12.2 (repo's configured linter viamake lintand CI; no custom.golangci.yml, so defaults apply).Before: 4 issues (2 errcheck, 2 govet) → After: 0 issues.
Auto-fixed (2, via
golangci-lint run --fix)cmd/nightshift/commands/config.go: replaced deprecatedreflect.Ptrwithreflect.Pointer(govetinline) — alias rename, no behavior change.Manually fixed (2, trivial)
cmd/nightshift/commands/commit.go: explicitly discardedfmt.Fprintlnreturn values (_, _ =) per the existing codebase convention (seetask.go,run.go,snapshot.go) — errcheck.Remaining violations intentionally left
None — linter now reports 0 issues.
Verification
golangci-lint run→ 0 issuesgo build ./...→ passgo test ./...→ all packages passNote on branch name
The required local branch name
lint-fix/auto-fixesconflicts on the fork with the existing (unmerged, from 2026-03-23) branchlint-fix— git cannot store bothrefs/heads/lint-fixandrefs/heads/lint-fix/*. Rather than delete unmerged work, the branch was pushed aschore/lint-fix-auto-fixes-20260908.Nightshift-Task: lint-fix
Nightshift-Ref: https://github.com/marcus/nightshift
Automated by nightshift