Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
compose/.golangci.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
66 lines (66 sloc)
1.46 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
run: | |
concurrency: 2 | |
timeout: 10m | |
linters: | |
enable-all: false | |
disable-all: true | |
enable: | |
- depguard | |
- errcheck | |
- gocritic | |
- gocyclo | |
- gofmt | |
- goimports | |
- gomodguard | |
- revive | |
- gosimple | |
- govet | |
- ineffassign | |
- lll | |
- misspell | |
- nakedret | |
- nolintlint | |
- staticcheck | |
- typecheck | |
- unconvert | |
- unparam | |
- unused | |
linters-settings: | |
revive: | |
rules: | |
- name: package-comments | |
disabled: true | |
depguard: | |
list-type: denylist | |
include-go-root: true | |
packages: | |
# The io/ioutil package has been deprecated. | |
# https://go.dev/doc/go1.16#ioutil | |
- io/ioutil | |
gomodguard: | |
blocked: | |
versions: | |
- gotest.tools: | |
version: "< 3.0.0" | |
reason: "deprecated, pre-modules version" | |
gocritic: | |
# Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint run` to see all tags and checks. | |
# Empty list by default. See https://github.com/go-critic/go-critic#usage -> section "Tags". | |
enabled-tags: | |
- diagnostic | |
- opinionated | |
- style | |
disabled-checks: | |
- paramTypeCombine | |
- unnamedResult | |
- whyNoLint | |
gocyclo: | |
min-complexity: 16 | |
lll: | |
line-length: 200 | |
issues: | |
# golangci hides some golint warnings (the warning about exported things | |
# withtout documentation for example), this will make it show them anyway. | |
exclude-use-default: false | |
exclude: | |
- should not use dot imports |