mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2024-11-24 08:52:25 +02:00
44 lines
757 B
YAML
44 lines
757 B
YAML
run:
|
|
deadline: 120s
|
|
linters:
|
|
enable:
|
|
- govet
|
|
- golint
|
|
- ineffassign
|
|
- goconst
|
|
- deadcode
|
|
- gofmt
|
|
- goimports
|
|
- gosec
|
|
- gosimple
|
|
- staticcheck
|
|
- structcheck
|
|
- typecheck
|
|
- unused
|
|
- varcheck
|
|
- bodyclose
|
|
- dogsled
|
|
- goprintffuncname
|
|
- misspell
|
|
- prealloc
|
|
- scopelint
|
|
- stylecheck
|
|
- unconvert
|
|
- gocritic
|
|
disable-all: true
|
|
issues:
|
|
exclude-rules:
|
|
- path: _test\.go
|
|
linters:
|
|
- scopelint
|
|
- bodyclose
|
|
- unconvert
|
|
- gocritic
|
|
- gosec
|
|
# If we have tests in shared test folders, these can be less strictly linted
|
|
- path: tests/.*_tests\.go
|
|
linters:
|
|
- golint
|
|
- bodyclose
|
|
- stylecheck
|