forked from kevadesu/forgejo
format with gofumpt (#18184)
* gofumpt -w -l . * gofumpt -w -l -extra . * Add linter * manual fix * change make fmt
This commit is contained in:
parent
1d98d205f5
commit
54e9ee37a7
423 changed files with 1585 additions and 1758 deletions
|
@ -169,10 +169,12 @@ var levelToColor = map[Level][]byte{
|
|||
NONE: ColorBytes(Reset),
|
||||
}
|
||||
|
||||
var resetBytes = ColorBytes(Reset)
|
||||
var fgCyanBytes = ColorBytes(FgCyan)
|
||||
var fgGreenBytes = ColorBytes(FgGreen)
|
||||
var fgBoldBytes = ColorBytes(Bold)
|
||||
var (
|
||||
resetBytes = ColorBytes(Reset)
|
||||
fgCyanBytes = ColorBytes(FgCyan)
|
||||
fgGreenBytes = ColorBytes(FgGreen)
|
||||
fgBoldBytes = ColorBytes(Bold)
|
||||
)
|
||||
|
||||
type protectedANSIWriterMode int
|
||||
|
||||
|
@ -335,7 +337,6 @@ func NewColoredValuePointer(value *interface{}, color ...ColorAttribute) *Colore
|
|||
resetBytes: &resetBytes,
|
||||
Value: value,
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// NewColoredValueBytes creates a value from the provided value with color bytes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue