Closed
Description
Running linter in gilab ci
golangci-lint:v1.17
go 1.12
err log:
golangci.log
.golangci.yml:
enable-all: true
disable:
# Globals are OK
- gochecknoglobals
# So are inits
- gochecknoinits
# Cant disable some of go vet checks => disable all of them
- govet
# Useless
- interfacer
# Long lines are fine
- lll
# Using "weak" primitivies is fine when they're not used for crypto
- gosec
run:
tests: false
issues-exit-code: 0
skip-dirs:
- vendor/
skip-files:
- _test.go$