mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 06:20:28 +00:00
8764be7461
* Add vk bridge * Vk bridge attachments * Vk bridge forwarded messages * Vk bridge sample config and code cleanup * Vk bridge add vendor * Vk bridge message edit * Vk bridge: fix fetching names of other bots * Vk bridge: code cleanup * Vk bridge: fix shadows declaration * Vk bridge: remove UseFileURL
85 lines
1.3 KiB
YAML
85 lines
1.3 KiB
YAML
---
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- bodyclose
|
|
- deadcode
|
|
- errcheck
|
|
- gochecknoglobals
|
|
- goconst
|
|
- gocritic
|
|
- gofmt
|
|
- goimports
|
|
- golint
|
|
- goprintffuncname
|
|
- gosec
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- interfacer
|
|
- maligned
|
|
- misspell
|
|
- nakedret
|
|
- prealloc
|
|
- staticcheck
|
|
- structcheck
|
|
- stylecheck
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
- varcheck
|
|
- whitespace
|
|
- wsl
|
|
- godot
|
|
- asciicheck
|
|
- nolintlint
|
|
- gofumpt
|
|
- goerr113
|
|
- tparallel
|
|
- errorlint
|
|
- paralleltest
|
|
|
|
# - wrapcheck # TODO: v3 Fix
|
|
# - testpackage # TODO: Fix testpackage
|
|
# - nestif # TODO: Fix nestif
|
|
|
|
# don't enable:
|
|
# - depguard
|
|
# - dogsled
|
|
# - dupl
|
|
# - funlen
|
|
# - gochecknoinits
|
|
# - gocognit
|
|
# - gocyclo
|
|
# - godox
|
|
# - gomnd
|
|
# - lll
|
|
# - rowserrcheck
|
|
# - scopelint
|
|
# - gomodguard
|
|
# - exhaustive
|
|
# - nlreturn
|
|
# - gci
|
|
# - exhaustivestruct
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- path: _test\.go
|
|
linters:
|
|
- gocyclo
|
|
- errcheck
|
|
- dupl
|
|
- gosec
|
|
|
|
- linters:
|
|
- errcheck
|
|
source: ".((os\\.)?std(out|err)\\..*|.*Close|.*Flush|os\\.Remove(All)?|
|
|
.*printf?|os\\.(Un)?Setenv)."
|
|
|
|
- linters:
|
|
- stylecheck
|
|
text: "ST1003:.*(Ts|ts).*TS"
|
|
|
|
exclude-use-default: false
|