File tree 4 files changed +25
-2
lines changed
4 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,18 @@ func TestReadConfigFile(t *testing.T) {
59
59
as .Nil (alejandra .Options )
60
60
as .Equal ([]string {"*.nix" }, alejandra .Includes )
61
61
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 )
62
74
63
75
// ruby
64
76
ruby , ok := cfg .Formatters ["ruby" ]
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ type Formatter struct {
9
9
Includes []string
10
10
// Excludes is an optional list of glob patterns used to exclude certain files from this Formatter.
11
11
Excludes []string
12
- //
12
+ // Indicates this formatter should be executed as part of a group of formatters all sharing the same pipeline key.
13
13
Pipeline string
14
+ // Indicates the order of precedence when executing as part of a pipeline.
15
+ Priority int
14
16
}
Original file line number Diff line number Diff line change 1
1
package format
2
2
3
- import "context"
3
+ import (
4
+ "context"
5
+ "slices"
6
+ )
4
7
5
8
type Pipeline struct {
6
9
sequence []* Formatter
7
10
}
8
11
9
12
func (p * Pipeline ) Add (f * Formatter ) {
10
13
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
+ })
11
18
}
12
19
13
20
func (p * Pipeline ) Wants (path string ) bool {
Original file line number Diff line number Diff line change @@ -32,11 +32,13 @@ includes = ["*.nix"]
32
32
# Act as an example on how to exclude specific files
33
33
excludes = [" examples/nix/sources.nix" ]
34
34
pipeline = " nix"
35
+ priority = 1
35
36
36
37
[formatter .deadnix ]
37
38
command = " deadnix"
38
39
includes = [" *.nix" ]
39
40
pipeline = " nix"
41
+ priority = 2
40
42
41
43
[formatter .ruby ]
42
44
command = " rufo"
You can’t perform that action at this time.
0 commit comments