Skip to content

Commit

Permalink
test(lint): Suppress int overflow warning [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Oct 11, 2024
1 parent 2d47867 commit 200b3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ls/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func run(cmd *cobra.Command, args []string) error {
w,
"%s\t%s\t%t\t%s\t%d\t%s\t\n",
info.Name,
humanize.Bytes(uint64(info.Size)),
humanize.Bytes(uint64(info.Size)), //nolint:gosec
info.Default,
info.Duration.Round(time.Second),
info.NumFrames,
Expand Down

0 comments on commit 200b3d6

Please sign in to comment.