Skip to content

Commit 2edb46d

Browse files
authored
feat: colored diff for fmt command (#5652)
1 parent f639807 commit 2edb46d

File tree

4 files changed

+29
-10
lines changed

4 files changed

+29
-10
lines changed

go.mod

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ require (
1515
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24
1616
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.1
1717
github.com/OpenPeeDeeP/depguard/v2 v2.2.1
18+
github.com/alecthomas/chroma/v2 v2.15.0
1819
github.com/alecthomas/go-check-sumtype v0.3.1
1920
github.com/alexkohler/nakedret/v2 v2.0.6
2021
github.com/alexkohler/prealloc v1.0.0
@@ -148,6 +149,7 @@ require (
148149
github.com/chavacava/garif v0.1.0 // indirect
149150
github.com/dave/dst v0.27.3 // indirect
150151
github.com/davecgh/go-spew v1.1.1 // indirect
152+
github.com/dlclark/regexp2 v1.11.4 // indirect
151153
github.com/ebitengine/purego v0.8.2 // indirect
152154
github.com/ettle/strcase v0.2.0 // indirect
153155
github.com/fatih/structtag v1.2.0 // indirect

go.sum

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/commands/fmt.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ import (
2020
type fmtOptions struct {
2121
config.LoaderOptions
2222

23-
diff bool // Flag only.
24-
stdin bool // Flag only.
23+
diff bool // Flag only.
24+
diffColored bool // Flag only.
25+
stdin bool // Flag only.
2526
}
2627

2728
type fmtCommand struct {
@@ -70,6 +71,7 @@ func newFmtCommand(logger logutils.Log, info BuildInfo) *fmtCommand {
7071
setupFormattersFlagSet(c.viper, fs)
7172

7273
fs.BoolVarP(&c.opts.diff, "diff", "d", false, color.GreenString("Display diffs instead of rewriting files"))
74+
fs.BoolVar(&c.opts.diffColored, "diff-colored", false, color.GreenString("Display diffs instead of rewriting files (with colors)"))
7375
fs.BoolVar(&c.opts.stdin, "stdin", false, color.GreenString("Use standard input for piping source files"))
7476

7577
c.cmd = fmtCmd
@@ -102,7 +104,7 @@ func (c *fmtCommand) preRunE(_ *cobra.Command, _ []string) error {
102104

103105
matcher := processors.NewGeneratedFileMatcher(c.cfg.Formatters.Exclusions.Generated)
104106

105-
opts, err := goformat.NewRunnerOptions(c.cfg, c.opts.diff, c.opts.stdin)
107+
opts, err := goformat.NewRunnerOptions(c.cfg, c.opts.diff, c.opts.diffColored, c.opts.stdin)
106108
if err != nil {
107109
return fmt.Errorf("build walk options: %w", err)
108110
}

pkg/goformat/runner.go

+18-5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"regexp"
1313
"strings"
1414

15+
"github.com/alecthomas/chroma/v2/quick"
1516
rpdiff "github.com/rogpeppe/go-internal/diff"
1617

1718
"github.com/golangci/golangci-lint/v2/pkg/config"
@@ -128,9 +129,19 @@ func (c *Runner) process(path string, stdout io.Writer, in io.Reader) error {
128129
if c.opts.diff {
129130
newName := filepath.ToSlash(path)
130131
oldName := newName + ".orig"
131-
_, err = stdout.Write(rpdiff.Diff(oldName, input, newName, output))
132-
if err != nil {
133-
return err
132+
133+
patch := rpdiff.Diff(oldName, input, newName, output)
134+
135+
if c.opts.colors {
136+
err = quick.Highlight(stdout, string(patch), "diff", "terminal", "native")
137+
if err != nil {
138+
return err
139+
}
140+
} else {
141+
_, err = stdout.Write(patch)
142+
if err != nil {
143+
return err
144+
}
134145
}
135146

136147
c.exitCode = 1
@@ -168,10 +179,11 @@ type RunnerOptions struct {
168179
patterns []*regexp.Regexp
169180
generated string
170181
diff bool
182+
colors bool
171183
stdin bool
172184
}
173185

174-
func NewRunnerOptions(cfg *config.Config, diff, stdin bool) (RunnerOptions, error) {
186+
func NewRunnerOptions(cfg *config.Config, diff, diffColored, stdin bool) (RunnerOptions, error) {
175187
basePath, err := fsutils.GetBasePath(context.Background(), cfg.Run.RelativePathMode, cfg.GetConfigDir())
176188
if err != nil {
177189
return RunnerOptions{}, fmt.Errorf("get base path: %w", err)
@@ -180,7 +192,8 @@ func NewRunnerOptions(cfg *config.Config, diff, stdin bool) (RunnerOptions, erro
180192
opts := RunnerOptions{
181193
basePath: basePath,
182194
generated: cfg.Formatters.Exclusions.Generated,
183-
diff: diff,
195+
diff: diff || diffColored,
196+
colors: diffColored,
184197
stdin: stdin,
185198
}
186199

0 commit comments

Comments
 (0)