Skip to content

Commit 6ae0e4f

Browse files
committed
feat: add pipeline priority field
Allows for fine-grained control of execution order. Signed-off-by: Brian McGee <[email protected]>
1 parent c71d690 commit 6ae0e4f

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

config/config_test.go

+12
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,18 @@ func TestReadConfigFile(t *testing.T) {
5959
as.Nil(alejandra.Options)
6060
as.Equal([]string{"*.nix"}, alejandra.Includes)
6161
as.Equal([]string{"examples/nix/sources.nix"}, alejandra.Excludes)
62+
as.Equal("nix", alejandra.Pipeline)
63+
as.Equal(1, alejandra.Priority)
64+
65+
// deadnix
66+
deadnix, ok := cfg.Formatters["deadnix"]
67+
as.True(ok, "deadnix formatter not found")
68+
as.Equal("deadnix", deadnix.Command)
69+
as.Nil(deadnix.Options)
70+
as.Equal([]string{"*.nix"}, deadnix.Includes)
71+
as.Nil(deadnix.Excludes)
72+
as.Equal("nix", deadnix.Pipeline)
73+
as.Equal(2, deadnix.Priority)
6274

6375
// ruby
6476
ruby, ok := cfg.Formatters["ruby"]

config/formatter.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ type Formatter struct {
99
Includes []string
1010
// Excludes is an optional list of glob patterns used to exclude certain files from this Formatter.
1111
Excludes []string
12-
//
12+
// Indicates this formatter should be executed as part of a group of formatters all sharing the same pipeline key.
1313
Pipeline string
14+
// Indicates the order of precedence when executing as part of a pipeline.
15+
Priority int
1416
}

format/pipeline.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
package format
22

3-
import "context"
3+
import (
4+
"context"
5+
"slices"
6+
)
47

58
type Pipeline struct {
69
sequence []*Formatter
710
}
811

912
func (p *Pipeline) Add(f *Formatter) {
1013
p.sequence = append(p.sequence, f)
14+
// sort by priority in ascending order
15+
slices.SortFunc(p.sequence, func(a, b *Formatter) int {
16+
return a.config.Priority - b.config.Priority
17+
})
1118
}
1219

1320
func (p *Pipeline) Wants(path string) bool {

test/examples/treefmt.toml

+2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,13 @@ includes = ["*.nix"]
3232
# Act as an example on how to exclude specific files
3333
excludes = ["examples/nix/sources.nix"]
3434
pipeline = "nix"
35+
priority = 1
3536

3637
[formatter.deadnix]
3738
command = "deadnix"
3839
includes = ["*.nix"]
3940
pipeline = "nix"
41+
priority = 2
4042

4143
[formatter.ruby]
4244
command = "rufo"

0 commit comments

Comments
 (0)