sec/.golangci.yml

26 lines
391 B
YAML
Raw Permalink Normal View History

2020-11-21 21:25:16 +05:00
run:
deadline: 5m
linters:
enable-all: true
disable:
- dupl
- gochecknoglobals
- exhaustive
- testpackage
- cyclop
- varnamelen
- gomnd
- paralleltest
# Deprecated.
- exhaustivestruct
2020-11-21 21:25:16 +05:00
linters-settings:
lll:
line-length: 120
gocyclo:
min-complexity: 80
gocognit:
min-complexity: 100
funlen:
lines: 200
statements: 100