Skip to content

Commit c9dc408

Browse files
committed
Make linter happy
1 parent 3a7b844 commit c9dc408

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: output/output.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ type Output interface {
3030
EmitJSON() string
3131
}
3232

33-
type OutputKind int
33+
type Kind int
3434

3535
const (
36-
Terminal OutputKind = iota
36+
Terminal Kind = iota
3737
JSON
3838
)
3939

4040
var defaultOutputKind = Terminal
4141

42-
func SetOutputKind(kind OutputKind) {
42+
func SetOutputKind(kind Kind) {
4343
defaultOutputKind = kind
4444
}
4545

0 commit comments

Comments
 (0)