mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-02 15:30:01 +00:00
906639ad7e
* update viper version * removes our last uses of the slice package * fix tests
109 lines
2.2 KiB
YAML
109 lines
2.2 KiB
YAML
run:
|
|
timeout: 5m
|
|
|
|
linters-settings:
|
|
gci:
|
|
sections:
|
|
- standard
|
|
- default
|
|
- prefix(github.com/spf13/viper)
|
|
gocritic:
|
|
# Enable multiple checks by tags. See "Tags" section in https://github.com/go-critic/go-critic#usage.
|
|
enabled-tags:
|
|
- diagnostic
|
|
- experimental
|
|
- opinionated
|
|
- style
|
|
disabled-checks:
|
|
- importShadow
|
|
- unnamedResult
|
|
golint:
|
|
min-confidence: 0
|
|
goimports:
|
|
local-prefixes: github.com/spf13/viper
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- bodyclose
|
|
- dogsled
|
|
- dupl
|
|
- durationcheck
|
|
- exhaustive
|
|
- exportloopref
|
|
- gci
|
|
- gocritic
|
|
- godot
|
|
- gofmt
|
|
- gofumpt
|
|
- goimports
|
|
- gomoddirectives
|
|
- goprintffuncname
|
|
- govet
|
|
- importas
|
|
- ineffassign
|
|
- makezero
|
|
- misspell
|
|
- nakedret
|
|
- nilerr
|
|
- noctx
|
|
- nolintlint
|
|
- prealloc
|
|
- predeclared
|
|
- revive
|
|
- rowserrcheck
|
|
- sqlclosecheck
|
|
- staticcheck
|
|
- stylecheck
|
|
- tparallel
|
|
- typecheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
- wastedassign
|
|
- whitespace
|
|
|
|
# fixme
|
|
# - cyclop
|
|
# - errcheck
|
|
# - errorlint
|
|
# - exhaustivestruct
|
|
# - forbidigo
|
|
# - forcetypeassert
|
|
# - gochecknoglobals
|
|
# - gochecknoinits
|
|
# - gocognit
|
|
# - goconst
|
|
# - gocyclo
|
|
# - gosec
|
|
# - gosimple
|
|
# - ifshort
|
|
# - lll
|
|
# - nlreturn
|
|
# - paralleltest
|
|
# - scopelint
|
|
# - thelper
|
|
# - wrapcheck
|
|
|
|
# unused
|
|
# - depguard
|
|
# - goheader
|
|
# - gomodguard
|
|
|
|
# deprecated
|
|
# - deadcode
|
|
# - structcheck
|
|
# - varcheck
|
|
|
|
# don't enable:
|
|
# - asciicheck
|
|
# - funlen
|
|
# - godox
|
|
# - goerr113
|
|
# - gomnd
|
|
# - interfacer
|
|
# - maligned
|
|
# - nestif
|
|
# - testpackage
|
|
# - wsl
|