diff options
| author | Shulhan <ms@kilabit.info> | 2019-03-01 11:30:40 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2019-03-01 11:30:40 +0700 |
| commit | a948627494943fbb08b626e5f2686030cb56f1fb (patch) | |
| tree | d354eae3ddf6d5d38557089ca33700372b4596c0 /lib/debug/debug.go | |
| parent | db96ed72b1dbebaaa856c0a2d627df33da6827f2 (diff) | |
| download | pakakeh.go-a948627494943fbb08b626e5f2686030cb56f1fb.tar.xz | |
all: fix warnings from linter
Most of the warnings caused by update to linter which cause global
variables declared with grouping "( ... )" and that has been suppressed,
are become false-positive again.
Diffstat (limited to 'lib/debug/debug.go')
| -rw-r--r-- | lib/debug/debug.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debug/debug.go b/lib/debug/debug.go index cef71b26..80ba2002 100644 --- a/lib/debug/debug.go +++ b/lib/debug/debug.go @@ -11,9 +11,9 @@ import ( "strconv" ) -var ( // nolint: gochecknoglobals +var ( // Value contains DEBUG value from environment. - Value = 0 + Value = 0 //nolint: gochecknoglobals ) // |
