mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 05:20:25 +00:00
dd3fb32ec7
Bumps [github.com/SevereCloud/vksdk/v2](https://github.com/SevereCloud/vksdk) from 2.13.0 to 2.13.1. - [Release notes](https://github.com/SevereCloud/vksdk/releases) - [Commits](https://github.com/SevereCloud/vksdk/compare/v2.13.0...v2.13.1) --- updated-dependencies: - dependency-name: github.com/SevereCloud/vksdk/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
115 lines
1.7 KiB
YAML
115 lines
1.7 KiB
YAML
---
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- bodyclose
|
|
- deadcode
|
|
- errcheck
|
|
- gochecknoglobals
|
|
- goconst
|
|
- gocritic
|
|
- gofmt
|
|
- goimports
|
|
- goprintffuncname
|
|
- gosec
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- misspell
|
|
- nakedret
|
|
- prealloc
|
|
- staticcheck
|
|
- structcheck
|
|
- stylecheck
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
- varcheck
|
|
- whitespace
|
|
- wsl
|
|
- godot
|
|
- asciicheck
|
|
- nolintlint
|
|
- gofumpt
|
|
- goerr113
|
|
- tparallel
|
|
- errorlint
|
|
- paralleltest
|
|
- forbidigo
|
|
- makezero
|
|
- thelper
|
|
- predeclared
|
|
- ifshort
|
|
- revive
|
|
- durationcheck
|
|
- gomoddirectives
|
|
- importas
|
|
- nilerr
|
|
- revive
|
|
- wastedassign
|
|
- bidichk
|
|
- contextcheck
|
|
- ireturn
|
|
- nilnil
|
|
- tenv
|
|
- nestif
|
|
- grouper
|
|
- decorder
|
|
- containedctx
|
|
|
|
# - wrapcheck # TODO: v3 Fix
|
|
# - testpackage # TODO: Fix testpackage
|
|
# - noctx # TODO: Fix noctx
|
|
|
|
# don't enable:
|
|
# - depguard
|
|
# - dogsled
|
|
# - dupl
|
|
# - funlen
|
|
# - gochecknoinits
|
|
# - gocognit
|
|
# - gocyclo
|
|
# - godox
|
|
# - gomnd
|
|
# - lll
|
|
# - rowserrcheck
|
|
# - scopelint
|
|
# - gomodguard
|
|
# - exhaustive
|
|
# - nlreturn
|
|
# - gci
|
|
# - exhaustivestruct
|
|
# - cyclop
|
|
# - promlinter
|
|
# - tagliatelle
|
|
# - errname
|
|
# - varnamelen
|
|
# - errchkjson
|
|
# - maintidx
|
|
|
|
# depricated
|
|
# - maligned
|
|
# - interfacer
|
|
# - golint
|
|
|
|
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
|