20 lines
395 B
Plaintext
20 lines
395 B
Plaintext
# Refer to golangci-lint's example config file for more options and information:
|
|
# https://github.com/golangci/golangci-lint/blob/master/.golangci.reference.yml
|
|
|
|
run:
|
|
timeout: 5m
|
|
modules-download-mode: readonly
|
|
|
|
linters:
|
|
enable:
|
|
- errcheck
|
|
- goimports
|
|
- golint
|
|
- govet
|
|
- staticcheck
|
|
|
|
issues:
|
|
exclude-use-default: false
|
|
max-issues-per-linter: 0
|
|
max-same-issues: 0
|