Skip to content

Commit fc88f98

Browse files
brianmcgeejfly
andcommitted
feat: more stringent golangci-lint rules
Applies more stringent `golangci-lint` rules to the repository, borrowed from https://github.com/nix-community/go-nix. Also fixes a bug where we were not returning errors when calling `walk.Reader.Read()` in `cmd/format` Signed-off-by: Brian McGee <[email protected]> Co-authored-by: Jeremy Fleischman <[email protected]> Signed-off-by: Brian McGee <[email protected]>
1 parent 7b6fc1b commit fc88f98

25 files changed

+285
-191
lines changed

.golangci.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# taken from https://github.com/nix-community/go-nix/blob/main/.golangci.yml
2+
linters:
3+
enable:
4+
- errname
5+
- exhaustive
6+
- gci
7+
- gochecknoglobals
8+
- gochecknoinits
9+
- goconst
10+
- godot
11+
- gofumpt
12+
- goheader
13+
- goimports
14+
- gosec
15+
- importas
16+
- ireturn
17+
- lll
18+
- makezero
19+
- misspell
20+
- nakedret
21+
- nestif
22+
- nilerr
23+
- nilnil
24+
- nlreturn
25+
- noctx
26+
- nolintlint
27+
- prealloc
28+
- predeclared
29+
- revive
30+
- rowserrcheck
31+
- stylecheck
32+
- tagliatelle
33+
- tenv
34+
- testpackage
35+
- unconvert
36+
- unparam
37+
- wastedassign
38+
- whitespace
39+
- wsl

build/build.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package build
22

33
var (
4-
Name = "treefmt"
5-
Version = "v0.0.1+dev"
4+
Name = "treefmt" //nolint:gochecknoglobals
5+
Version = "v0.0.1+dev" //nolint:gochecknoglobals
66
)

cmd/format/format.go

+15-15
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,17 @@ import (
1414
"syscall"
1515
"time"
1616

17-
"github.com/numtide/treefmt/walk/cache"
18-
bolt "go.etcd.io/bbolt"
19-
2017
"github.com/charmbracelet/log"
2118
"github.com/gobwas/glob"
2219
"github.com/numtide/treefmt/config"
2320
"github.com/numtide/treefmt/format"
2421
"github.com/numtide/treefmt/stats"
2522
"github.com/numtide/treefmt/walk"
23+
"github.com/numtide/treefmt/walk/cache"
2624
"github.com/spf13/cobra"
2725
"github.com/spf13/viper"
26+
bolt "go.etcd.io/bbolt"
2827
"golang.org/x/sync/errgroup"
29-
3028
"mvdan.cc/sh/v3/expand"
3129
)
3230

@@ -60,20 +58,23 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
6058
// Wait until we tick over into the next second before processing to ensure our EPOCH level modtime comparisons
6159
// for change detection are accurate.
6260
// This can fail in CI between checkout and running treefmt if everything happens too quickly.
63-
// For humans, the second level precision should not be a problem as they are unlikely to run treefmt in sub-second succession.
61+
// For humans, the second level precision should not be a problem as they are unlikely to run treefmt in
62+
// sub-second succession.
6463
<-time.After(time.Until(startAfter))
6564
}
6665

6766
// cpu profiling
68-
if cfg.CpuProfile != "" {
69-
cpuProfile, err := os.Create(cfg.CpuProfile)
67+
if cfg.CPUProfile != "" {
68+
cpuProfile, err := os.Create(cfg.CPUProfile)
7069
if err != nil {
7170
return fmt.Errorf("failed to open file for writing cpu profile: %w", err)
7271
} else if err = pprof.StartCPUProfile(cpuProfile); err != nil {
7372
return fmt.Errorf("failed to start cpu profile: %w", err)
7473
}
74+
7575
defer func() {
7676
pprof.StopCPUProfile()
77+
7778
if err := cpuProfile.Close(); err != nil {
7879
log.Errorf("failed to close cpu profile: %v", err)
7980
}
@@ -99,6 +100,7 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
99100

100101
if errors.Is(err, format.ErrCommandNotFound) && cfg.AllowMissingFormatter {
101102
log.Debugf("formatter command not found: %v", name)
103+
102104
continue
103105
} else if err != nil {
104106
return fmt.Errorf("%w: failed to initialise formatter: %v", err, name)
@@ -110,8 +112,8 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
110112

111113
var db *bolt.DB
112114

115+
// open the db unless --no-cache was specified
113116
if !cfg.NoCache {
114-
// open the db
115117
db, err = cache.Open(cfg.TreeRoot)
116118
if err != nil {
117119
return fmt.Errorf("failed to open cache: %w", err)
@@ -123,7 +125,9 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
123125
log.Errorf("failed to close cache: %v", err)
124126
}
125127
}()
128+
}
126129

130+
if db != nil {
127131
// clear the cache if desired
128132
if cfg.ClearCache {
129133
if err = cache.Clear(db); err != nil {
@@ -226,9 +230,7 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
226230
break
227231
} else if err != nil {
228232
// something went wrong
229-
log.Errorf("failed to read files: %v", err)
230-
cancel()
231-
break
233+
return fmt.Errorf("failed to read files: %w", err)
232234
}
233235
}
234236

@@ -243,7 +245,6 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
243245
return reader.Close()
244246
}
245247

246-
// applyFormatters
247248
func applyFormatters(
248249
ctx context.Context,
249250
cfg *config.Config,
@@ -275,7 +276,6 @@ func applyFormatters(
275276

276277
// process the batch if it's full, or we've been asked to flush partial batches
277278
if flush || len(batch) == BatchSize {
278-
279279
// copy the batch as we re-use it for the next batch
280280
tasks := make([]*format.Task, len(batch))
281281
copy(tasks, batch)
@@ -287,6 +287,7 @@ func applyFormatters(
287287
formatters := tasks[0].Formatters
288288

289289
var formatErrors []error
290+
290291
for idx := range formatters {
291292
if err := formatters[idx].Apply(ctx, tasks); err != nil {
292293
formatErrors = append(formatErrors, err)
@@ -330,7 +331,6 @@ func applyFormatters(
330331

331332
// iterate the file channel
332333
for file := range filesCh {
333-
334334
// a list of formatters that match this file
335335
var matches []*format.Formatter
336336

@@ -392,6 +392,7 @@ func applyFormatters(
392392
if err := fg.Wait(); err != nil {
393393
return fmt.Errorf("formatting failure: %w", err)
394394
}
395+
395396
return nil
396397
}
397398
}
@@ -406,7 +407,6 @@ func postProcessing(
406407
LOOP:
407408
for {
408409
select {
409-
410410
// detect ctx cancellation
411411
case <-ctx.Done():
412412
return ctx.Err()

cmd/init/init.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ import (
1212
var initBytes []byte
1313

1414
func Run() error {
15-
if err := os.WriteFile("treefmt.toml", initBytes, 0o644); err != nil {
15+
if err := os.WriteFile("treefmt.toml", initBytes, 0o600); err != nil {
1616
return fmt.Errorf("failed to write treefmt.toml: %w", err)
1717
}
18+
1819
fmt.Printf("Generated treefmt.toml. Now it's your turn to edit it.\n")
20+
1921
return nil
2022
}

cmd/root.go

+12-5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ import (
55
"os"
66
"path/filepath"
77

8-
"github.com/numtide/treefmt/stats"
9-
108
"github.com/charmbracelet/log"
119
"github.com/numtide/treefmt/build"
1210
"github.com/numtide/treefmt/cmd/format"
1311
_init "github.com/numtide/treefmt/cmd/init"
1412
"github.com/numtide/treefmt/config"
13+
"github.com/numtide/treefmt/stats"
1514
"github.com/spf13/cobra"
1615
"github.com/spf13/viper"
1716
)
@@ -33,7 +32,7 @@ func NewRoot() (*cobra.Command, *stats.Stats) {
3332

3433
// create out root command
3534
cmd := &cobra.Command{
36-
Use: "treefmt <paths...>",
35+
Use: fmt.Sprintf("%s <paths...>", build.Name),
3736
Short: "One CLI to format your repo",
3837
Version: build.Version,
3938
RunE: func(cmd *cobra.Command, args []string) error {
@@ -55,8 +54,15 @@ func NewRoot() (*cobra.Command, *stats.Stats) {
5554
cmd.HelpTemplate()
5655

5756
// add a couple of special flags which don't have a corresponding entry in treefmt.toml
58-
fs.StringVar(&configFile, "config-file", "", "Load the config file from the given path (defaults to searching upwards for treefmt.toml or .treefmt.toml).")
59-
fs.BoolVarP(&treefmtInit, "init", "i", false, "Create a treefmt.toml file in the current directory.")
57+
fs.StringVar(
58+
&configFile, "config-file", "",
59+
"Load the config file from the given path (defaults to searching upwards for treefmt.toml or "+
60+
".treefmt.toml).",
61+
)
62+
fs.BoolVarP(
63+
&treefmtInit, "init", "i", false,
64+
"Create a treefmt.toml file in the current directory.",
65+
)
6066

6167
// bind our command's flags to viper
6268
if err := v.BindPFlags(fs); err != nil {
@@ -110,6 +116,7 @@ func runE(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, args []string)
110116

111117
// read in the config
112118
v.SetConfigFile(configFile)
119+
113120
if err := v.ReadInConfig(); err != nil {
114121
cobra.CheckErr(fmt.Errorf("failed to read config file '%s': %w", configFile, err))
115122
}

0 commit comments

Comments
 (0)