mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
a156188b3e
* update dependencies, bump Go version to 1.19 * bump test image Go version * update golangci-lint * update gotosocial-drone-build * sign * linting, go fmt * update swagger docs * update swagger docs * whitespace * update contributing.md * fuckin whoopsie doopsie * linterino, linteroni * fix followrequest test not starting processor * fix other api/client tests not starting processor * fix remaining tests where processor not started * bump go-runners version * don't check last-webfingered-at, processor may have updated this * update swagger command * update bun to latest version * fix embed to work the same as before with new bun Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
84 lines
1.4 KiB
YAML
84 lines
1.4 KiB
YAML
run:
|
|
skip-files:
|
|
- encode_optype.go
|
|
- ".*_test\\.go$"
|
|
|
|
linters-settings:
|
|
govet:
|
|
enable-all: true
|
|
disable:
|
|
- shadow
|
|
|
|
linters:
|
|
enable-all: true
|
|
disable:
|
|
- dogsled
|
|
- dupl
|
|
- exhaustive
|
|
- exhaustivestruct
|
|
- errorlint
|
|
- forbidigo
|
|
- funlen
|
|
- gci
|
|
- gochecknoglobals
|
|
- gochecknoinits
|
|
- gocognit
|
|
- gocritic
|
|
- gocyclo
|
|
- godot
|
|
- godox
|
|
- goerr113
|
|
- gofumpt
|
|
- gomnd
|
|
- gosec
|
|
- ifshort
|
|
- lll
|
|
- makezero
|
|
- nakedret
|
|
- nestif
|
|
- nlreturn
|
|
- paralleltest
|
|
- testpackage
|
|
- thelper
|
|
- wrapcheck
|
|
- interfacer
|
|
- lll
|
|
- nakedret
|
|
- nestif
|
|
- nlreturn
|
|
- testpackage
|
|
- wsl
|
|
- varnamelen
|
|
- nilnil
|
|
- ireturn
|
|
- govet
|
|
- forcetypeassert
|
|
- cyclop
|
|
- containedctx
|
|
- revive
|
|
|
|
issues:
|
|
exclude-rules:
|
|
# not needed
|
|
- path: /*.go
|
|
text: "ST1003: should not use underscores in package names"
|
|
linters:
|
|
- stylecheck
|
|
- path: /*.go
|
|
text: "don't use an underscore in package name"
|
|
linters:
|
|
- golint
|
|
- path: rtype.go
|
|
linters:
|
|
- golint
|
|
- stylecheck
|
|
- path: error.go
|
|
linters:
|
|
- staticcheck
|
|
|
|
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
|
|
max-issues-per-linter: 0
|
|
|
|
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
|
|
max-same-issues: 0
|