userservice/.golangci.yml

21 lines
302 B
YAML
Raw Normal View History

2024-01-17 11:41:47 +03:00
# https://golangci-lint.run/usage/configuration/#config-file
run:
allow-parallel-runners: true
linters:
enable:
- megacheck
- govet
- gocritic
- gocyclo
- lll
- exportloopref
disable-all: false
disable:
- scopelint
presets:
- bugs
- unused
fast: false