hydra-werther/.golangci.yml

28 lines
483 B
YAML
Raw Permalink Normal View History

2019-05-24 16:13:15 +03:00
# Copyright (c) JSC iCore.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
2019-02-18 16:57:54 +03:00
run:
test: true
silent: true
linters-settings:
govet:
check-shadowing: true
linters:
disable-all: true
enable:
- deadcode
- gofmt
- goimports
- golint
- varcheck
- structcheck
- megacheck
- ineffassign
- interfacer
- unconvert
- govet
2019-05-15 15:03:05 +03:00
issues:
exclude-use-default: false