21c5284d6d
* Moved golangci-lint config to config file * Fixed all golangci lint errors * Not allowing telemetry shutdown error to prevent store from closing * Remved golangci-lint presets
59 lines
907 B
YAML
59 lines
907 B
YAML
run:
|
|
timeout: 5m
|
|
modules-download-mode: readonly
|
|
skip-dirs:
|
|
- services/store/sqlstore/migrations/
|
|
|
|
linters-settings:
|
|
gofmt:
|
|
simplify: true
|
|
govet:
|
|
check-shadowing: true
|
|
enable-all: true
|
|
disable:
|
|
- fieldalignment
|
|
|
|
linters:
|
|
disable-all: true
|
|
|
|
enable:
|
|
- gofmt
|
|
- goimports
|
|
- deadcode
|
|
- ineffassign
|
|
- structcheck
|
|
- varcheck
|
|
- unparam
|
|
- errcheck
|
|
- govet
|
|
- bodyclose
|
|
- durationcheck
|
|
- errorlint
|
|
- exhaustive
|
|
- exportloopref
|
|
- gosec
|
|
- makezero
|
|
- staticcheck
|
|
- prealloc
|
|
- asciicheck
|
|
- depguard
|
|
- dogsled
|
|
- dupl
|
|
- gochecknoinits
|
|
- goconst
|
|
- gocritic
|
|
- godot
|
|
- goerr113
|
|
- goheader
|
|
- golint
|
|
- gomnd
|
|
- gomodguard
|
|
- goprintffuncname
|
|
- gosimple
|
|
- lll
|
|
- misspell
|
|
- nolintlint
|
|
- stylecheck
|
|
- unconvert
|
|
- whitespace
|
|
- gocyclo
|