Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ tasks:
- "**/testdata/**/*"
- go.mod
- go.sum
env:
# -race needs CGO (https://go.dev/doc/articles/race_detector#Requirements)
CGO_ENABLED: 1
cmds:
- go test -race ./... {{.CLI_ARGS}}

Expand Down
2 changes: 1 addition & 1 deletion internal/style/style.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "go.followtheprocess.codes/hue"

const (
// Title is the style for titles of help text sections like arguments or commands.
Title = hue.Bold | hue.White | hue.Underline
Title = hue.Bold | hue.Underline

// Bold is simply plain bold text.
Bold = hue.Bold
Expand Down
Loading