service/vendor/github.com/gin-contrib/timeout/.golangci.yml

59 lines
920 B
YAML
Raw Normal View History

2024-05-15 19:09:45 +08:00
linters:
enable-all: false
disable-all: true
fast: false
enable:
- bodyclose
- depguard
- dogsled
- dupl
- errcheck
- exportloopref
- exhaustive
- gochecknoinits
- goconst
- gocritic
- gocyclo
- gofmt
- goimports
- goprintffuncname
- gosec
- gosimple
- govet
- ineffassign
- lll
- misspell
- nakedret
- noctx
- nolintlint
- rowserrcheck
- staticcheck
- stylecheck
- typecheck
- unconvert
- unparam
- unused
- whitespace
- gofumpt
linters-settings:
depguard:
rules:
Main:
files:
- $all
- "!$test"
allow:
- $gostd
- github.com/gin-gonic/gin
Test:
files:
- $test
allow:
- $gostd
- github.com/gin-gonic/gin
- github.com/stretchr/testify
run:
timeout: 3m