mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
33 lines
550 B
YAML
33 lines
550 B
YAML
run:
|
|
timeout: 5m
|
|
modules-download-mode: vendor
|
|
|
|
linters-settings:
|
|
govet:
|
|
check-shadowing: true
|
|
gofmt:
|
|
simplify: true
|
|
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- deadcode
|
|
- gofmt
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- structcheck
|
|
- unconvert
|
|
- unused
|
|
- varcheck
|
|
# TODO: enable this later
|
|
# - errcheck
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- linters:
|
|
# ignore unused warnings from enterprise code
|
|
# add more as required.
|
|
- unused
|
|
text: "RedisSupplier|LocalCacheSupplier|Enterprise"
|