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/git/git.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/git/git.go')
| -rw-r--r-- | lib/git/git.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/git/git.go b/lib/git/git.go index 94df0f26..1fcf2c97 100644 --- a/lib/git/git.go +++ b/lib/git/git.go @@ -22,9 +22,9 @@ const ( _defBranch = "master" ) -var ( // nolint: gochecknoglobals - _stdout = os.Stdout - _stderr = os.Stderr +var ( + _stdout = os.Stdout //nolint: gochecknoglobals + _stderr = os.Stderr //nolint: gochecknoglobals ) // |
