Skip to content

Commit

Permalink
Upgrade linter
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Sagi-Kazar <[email protected]>
  • Loading branch information
sagikazarmark committed Sep 11, 2020
1 parent 387404d commit ae12c84
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 20 deletions.
80 changes: 62 additions & 18 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,67 @@ linters-settings:
local-prefixes: github.com/spf13/viper

linters:
enable-all: true
disable:
- funlen
- maligned
disable-all: true
enable:
- bodyclose
- deadcode
- dogsled
- dupl
- exhaustive
- exportloopref
- goconst
- gofmt
- goimports
- golint
- goprintffuncname
- govet
- ineffassign
- misspell
- nakedret
- noctx
- nolintlint
- prealloc
- rowserrcheck
- sqlclosecheck
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unparam
- unused
- varcheck
- whitespace

# TODO: fix me
- wsl
- gochecknoinits
- gosimple
- gochecknoglobals
- errcheck
- lll
- godox
- scopelint
- gocyclo
- gocognit
- gocritic
# fixme
# - errcheck
# - gci
# - gochecknoglobals
# - gochecknoinits
# - gocognit
# - gocritic
# - gocyclo
# - godot
# - gofumpt
# - gosec
# - gosimple
# - lll
# - nlreturn
# - scopelint

service:
golangci-lint-version: 1.21.x
# unused
# - depguard
# - goheader
# - gomodguard

# don't enable:
# - asciicheck
# - funlen
# - godox
# - goerr113
# - gomnd
# - interfacer
# - maligned
# - nestif
# - testpackage
# - wsl
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ TEST_FORMAT = short-verbose
endif

# Dependency versions
GOTESTSUM_VERSION = 0.4.0
GOLANGCI_VERSION = 1.21.0
GOTESTSUM_VERSION = 0.5.3
GOLANGCI_VERSION = 1.31.0

# Add the ability to override some variables
# Use with care
Expand Down

0 comments on commit ae12c84

Please sign in to comment.