You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simplified the lint target to just run golangci-lint directly
instead of falling back to go vet when golangci-lint is not available.
Before:
- Complex shell logic to check if golangci-lint exists
- Fallback to go vet if not found
- Confusing behavior (different tools run depending on environment)
After:
- Simple: golangci-lint run
- Clear error if golangci-lint not installed
- Consistent behavior across environments
Updated RELEASES.md to document the golangci-lint requirement.
Tested: make lint fails cleanly with clear error when golangci-lint missing.
Co-authored-by: f0ssel <[email protected]>
0 commit comments