diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-05 19:48:05 -0700 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-05 19:48:05 -0700 |
commit | f416f777b2c2cac095e851e6799020f91e34aed1 (patch) | |
tree | 894bd28921cbc233031e0518e4675472045c60c6 | |
parent | d675f41242c043ddc4c6c1a1fb8aabcfd324aae2 (diff) | |
parent | 62cbc80cf26fa2cdbfa0ad1c44190f554f960b9b (diff) |
Merge branch 'lukeshu/lint2'
-rw-r--r-- | cmd/btrfs-rec/inspect_lstrees.go | 2 | ||||
-rw-r--r-- | cmd/btrfs-rec/inspect_rebuildmappings.go | 2 | ||||
-rw-r--r-- | cmd/btrfs-rec/inspect_scandevices.go | 2 | ||||
-rw-r--r-- | lib/textui/log.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/cmd/btrfs-rec/inspect_lstrees.go b/cmd/btrfs-rec/inspect_lstrees.go index f74956a..69295f0 100644 --- a/cmd/btrfs-rec/inspect_lstrees.go +++ b/cmd/btrfs-rec/inspect_lstrees.go @@ -54,7 +54,7 @@ func init() { } numWidth := len(strconv.Itoa(slices.Max(treeErrCnt, totalItems))) - table := tabwriter.NewWriter(os.Stdout, 0, 8, 2, ' ', 0) //nolint:gomnd // This is what looks Nice. + table := tabwriter.NewWriter(os.Stdout, 0, 8, 2, ' ', 0) //nolint:gomnd // This is what looks nice. textui.Fprintf(table, " errors\t% *s\n", numWidth, strconv.Itoa(treeErrCnt)) for _, typ := range maps.SortedKeys(treeItemCnt) { textui.Fprintf(table, " %v items\t% *s\n", typ, numWidth, strconv.Itoa(treeItemCnt[typ])) diff --git a/cmd/btrfs-rec/inspect_rebuildmappings.go b/cmd/btrfs-rec/inspect_rebuildmappings.go index 4555e58..4503d44 100644 --- a/cmd/btrfs-rec/inspect_rebuildmappings.go +++ b/cmd/btrfs-rec/inspect_rebuildmappings.go @@ -50,7 +50,7 @@ func init() { if err := writeJSONFile(os.Stdout, fs, lowmemjson.ReEncoder{ Indent: "\t", ForceTrailingNewlines: true, - CompactIfUnder: 120, //nolint:gomnd // This is what looks Nice. + CompactIfUnder: 120, //nolint:gomnd // This is what looks nice. }); err != nil { return err } diff --git a/cmd/btrfs-rec/inspect_scandevices.go b/cmd/btrfs-rec/inspect_scandevices.go index 410fa4f..ade9d74 100644 --- a/cmd/btrfs-rec/inspect_scandevices.go +++ b/cmd/btrfs-rec/inspect_scandevices.go @@ -34,7 +34,7 @@ func init() { if err := writeJSONFile(os.Stdout, results, lowmemjson.ReEncoder{ Indent: "\t", ForceTrailingNewlines: true, - CompactIfUnder: 16, //nolint:gomnd // This is what looks Nice. + CompactIfUnder: 16, //nolint:gomnd // This is what looks nice. }); err != nil { return err } diff --git a/lib/textui/log.go b/lib/textui/log.go index d2373f8..801e9eb 100644 --- a/lib/textui/log.go +++ b/lib/textui/log.go @@ -1,4 +1,4 @@ -// Copyright (C) 2019-2022-2023 Ambassador Labs +// Copyright (C) 2019-2022 Ambassador Labs // Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com> // // SPDX-License-Identifier: Apache-2.0 |