Skip to content

Commit

Permalink
fix: suppress a lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shunsuke committed Jan 25, 2024
1 parent adc87d9 commit b1cc466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cli/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func parseTags(tags []string) map[string]struct{} {
return tagsM
}

func (r *Runner) Run(ctx context.Context, args ...string) error {
func (r *Runner) Run(ctx context.Context, args ...string) error { //nolint:funlen
compiledDate, err := time.Parse(time.RFC3339, r.LDFlags.Date)
if err != nil {
compiledDate = time.Now()
Expand Down

0 comments on commit b1cc466

Please sign in to comment.