From c14af2a4eb80811e8fb25502b4a07ad2f33804c2 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 26 Jan 2023 22:45:39 -0700 Subject: .golangci.yml: Turn on formatting linters 'gci' and 'gofumpt', fix All formatting changes are made by ./tools/bin/golangci-lint run --fix ./... --- misc.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'misc.go') diff --git a/misc.go b/misc.go index ecb28ca..c3ce785 100644 --- a/misc.go +++ b/misc.go @@ -149,6 +149,7 @@ func writeStringUnicodeEscape(w io.Writer, c rune) (int, error) { } return w.Write(buf[:]) } + func writeStringShortEscape(w io.Writer, c rune) (int, error) { var b byte switch c { @@ -170,6 +171,7 @@ func writeStringShortEscape(w io.Writer, c rune) (int, error) { buf := [2]byte{'\\', b} return w.Write(buf[:]) } + func writeStringChar(w io.Writer, c rune, wasEscaped BackslashEscapeMode, escaper BackslashEscaper) (int, error) { if escaper == nil { escaper = EscapeDefault -- cgit v1.2.3-2-g168b