Skip to content

Commit 15db7f4

Browse files
brianmcgeeBrian McGee
authored and
Brian McGee
committed
fix: duplicate processing in ordered formatters (#24)
Fixes a bug with formatters processing paths out of order. Signed-off-by: Brian McGee <[email protected]> Reviewed-on: https://git.numtide.com/numtide/treefmt/pulls/24 Co-authored-by: Brian McGee <[email protected]> Co-committed-by: Brian McGee <[email protected]>
1 parent c7d0138 commit 15db7f4

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

internal/cli/format_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func TestDependencyCycle(t *testing.T) {
5757
})
5858

5959
_, err := cmd(t, "--config-file", configPath, "--tree-root", tempDir)
60-
as.ErrorContains(err, "formatter cycle detected a -> b -> c")
60+
as.ErrorContains(err, "formatter cycle detected")
6161
}
6262

6363
func TestSpecifyingFormatters(t *testing.T) {

internal/format/format.go

+4
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@ func (f *Formatter) SetChild(formatter *Formatter) {
122122
// Wants is used to test if a Formatter wants path based on it's configured Includes and Excludes patterns.
123123
// Returns true if the Formatter should be applied to path, false otherwise.
124124
func (f *Formatter) Wants(path string) bool {
125+
if f.parent != nil {
126+
// we don't accept this path directly, our parent will forward it
127+
return false
128+
}
125129
match := !PathMatches(path, f.excludes) && PathMatches(path, f.includes)
126130
if match {
127131
f.log.Debugf("match: %v", path)

internal/walk/git.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ package walk
33
import (
44
"context"
55
"fmt"
6-
"github.com/go-git/go-git/v5"
76
"os"
87
"path/filepath"
8+
9+
"github.com/go-git/go-git/v5"
910
)
1011

1112
type gitWalker struct {
@@ -18,14 +19,12 @@ func (g *gitWalker) Root() string {
1819
}
1920

2021
func (g *gitWalker) Walk(ctx context.Context, fn filepath.WalkFunc) error {
21-
2222
idx, err := g.repo.Storer.Index()
2323
if err != nil {
2424
return fmt.Errorf("%w: failed to open index", err)
2525
}
2626

2727
for _, entry := range idx.Entries {
28-
2928
select {
3029
case <-ctx.Done():
3130
return ctx.Err()
@@ -38,7 +37,6 @@ func (g *gitWalker) Walk(ctx context.Context, fn filepath.WalkFunc) error {
3837
return err
3938
}
4039
}
41-
4240
}
4341

4442
return nil

nix/packages.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
nativeBuildInputs =
3030
# we need some formatters available for the tests
31-
(import ./formatters.nix pkgs);
31+
import ./formatters.nix pkgs;
3232

3333
preCheck = ''
3434
XDG_CACHE_HOME=$(mktemp -d)

0 commit comments

Comments
 (0)