No need to rename golangci #11
Workflow file for this run
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
linters-settings: | |
dupl: | |
threshold: 100 | |
funlen: | |
lines: 100 | |
statements: 50 | |
goconst: | |
min-len: 2 | |
min-occurrences: 3 | |
gocritic: | |
enabled-tags: | |
- diagnostic | |
- experimental | |
- opinionated | |
- performance | |
- style | |
disabled-checks: | |
- dupImport # https://github.com/go-critic/go-critic/issues/845 | |
- ifElseChain | |
- octalLiteral | |
- whyNoLint | |
- wrapperFunc | |
gocyclo: | |
min-complexity: 15 | |
gomnd: | |
# don't include the "operation" and "assign" | |
checks: | |
- argument | |
- case | |
- condition | |
- return | |
ignored-numbers: | |
- '0' | |
- '1' | |
- '2' | |
- '3' | |
ignored-functions: | |
- strings.SplitN | |
lll: | |
line-length: 140 | |
misspell: | |
locale: US | |
nolintlint: | |
allow-leading-space: true # don't require machine-readable nolint directives (i.e. with no leading space) | |
allow-unused: false # report any unused nolint directives | |
require-explanation: false # don't require an explanation for nolint directives | |
require-specific: false # don't require nolint directives to be specific about which linter is being skipped | |
linters: | |
disable-all: true | |
enable: | |
- bodyclose | |
- deadcode | |
- dogsled | |
- dupl | |
- errcheck | |
- exportloopref | |
- goconst | |
- gocritic | |
- gocyclo | |
- gofmt | |
- goimports | |
- gomnd | |
- goprintffuncname | |
- gosec | |
- gosimple | |
- govet | |
- ineffassign | |
- lll | |
- misspell | |
- nakedret | |
- noctx | |
- nolintlint | |
- staticcheck | |
- structcheck | |
- stylecheck | |
- typecheck | |
- unconvert | |
- unparam | |
- unused | |
- varcheck | |
- whitespace | |
# don't enable: | |
# - asciicheck | |
# - funlen | |
# - scopelint | |
# - gochecknoglobals | |
# - gochecknoinits | |
# - gocognit | |
# - godot | |
# - godox | |
# - goerr113 | |
# - interfacer | |
# - maligned | |
# - nestif | |
# - prealloc | |
# - testpackage | |
# - revive | |
# - wsl | |
# - depguard # Requires configuration and by default only allows stdlib imports | |
issues: | |
# Excluding configuration per-path, per-linter, per-text and per-source | |
exclude-rules: | |
- path: _test\.go | |
linters: | |
- gosec | |
- errcheck | |
- gocritic |