5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 18:22:30 +00:00
matterbridge/vendor/github.com/spf13/viper/.golangci.yml

97 lines
1.8 KiB
YAML
Raw Normal View History

2021-06-16 19:00:49 +00:00
run:
timeout: 5m
2020-01-09 20:02:56 +00:00
linters-settings:
2021-06-16 19:00:49 +00:00
gci:
2022-04-25 21:50:10 +00:00
sections:
- standard
- default
- prefix(github.com/spf13/viper)
2020-01-09 20:02:56 +00:00
golint:
2021-06-16 19:00:49 +00:00
min-confidence: 0
2020-01-09 20:02:56 +00:00
goimports:
local-prefixes: github.com/spf13/viper
linters:
2021-06-16 19:00:49 +00:00
disable-all: true
enable:
- bodyclose
- deadcode
- dogsled
- dupl
- durationcheck
- exhaustive
- exportloopref
- gci
- gofmt
- gofumpt
- goimports
- gomoddirectives
- goprintffuncname
- govet
- importas
- ineffassign
- makezero
- misspell
- nakedret
- nilerr
- noctx
- nolintlint
- prealloc
- predeclared
- revive
- rowserrcheck
- sqlclosecheck
- staticcheck
- structcheck
- stylecheck
- tparallel
- typecheck
- unconvert
- unparam
- unused
- varcheck
- wastedassign
- whitespace
# fixme
# - cyclop
# - errcheck
# - errorlint
# - exhaustivestruct
# - forbidigo
# - forcetypeassert
# - gochecknoglobals
# - gochecknoinits
# - gocognit
# - goconst
2021-06-16 19:00:49 +00:00
# - gocritic
# - gocyclo
# - godot
# - gosec
# - gosimple
# - ifshort
# - lll
# - nlreturn
# - paralleltest
# - scopelint
# - thelper
# - wrapcheck
2020-01-09 20:02:56 +00:00
2021-06-16 19:00:49 +00:00
# unused
# - depguard
# - goheader
# - gomodguard
2020-05-23 22:06:21 +00:00
2021-06-16 19:00:49 +00:00
# don't enable:
# - asciicheck
# - funlen
# - godox
# - goerr113
# - gomnd
# - interfacer
# - maligned
# - nestif
# - testpackage
# - wsl