We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfa0538 commit 1e01c3fCopy full SHA for 1e01c3f
2 files changed
Taskfile.yml
@@ -36,6 +36,9 @@ tasks:
36
- "**/testdata/**/*"
37
- go.mod
38
- go.sum
39
+ env:
40
+ # -race needs CGO (https://go.dev/doc/articles/race_detector#Requirements)
41
+ CGO_ENABLED: 1
42
cmds:
43
- go test -race ./... {{.CLI_ARGS}}
44
internal/style/style.go
@@ -8,7 +8,7 @@ import "go.followtheprocess.codes/hue"
8
9
const (
10
// Title is the style for titles of help text sections like arguments or commands.
11
- Title = hue.Bold | hue.White | hue.Underline
+ Title = hue.Bold | hue.Underline
12
13
// Bold is simply plain bold text.
14
Bold = hue.Bold
0 commit comments