forked from k8snetworkplumbingwg/sriov-network-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add golangci.yaml config file - Add Makefile lint target to golangci-lint - Add GitHub action Related to issue k8snetworkplumbingwg#288 Signed-off-by: Fred Rolland <[email protected]>
- Loading branch information
Showing
3 changed files
with
155 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# Tested with golangci-lint ver. 1.37 | ||
run: | ||
timeout: 3m | ||
skip-dirs: | ||
- vendor/ | ||
- .github/ | ||
- deployment/ | ||
- doc/ | ||
- bindata/ | ||
linters-settings: | ||
depguard: | ||
list-type: blacklist | ||
packages: | ||
# logging is allowed only by logutils.Log, logrus | ||
# is allowed to use only in logutils package | ||
- github.com/sirupsen/logrus | ||
packages-with-error-message: | ||
- github.com/sirupsen/logrus: "logging is allowed only by logutils.Log" | ||
dupl: | ||
threshold: 100 | ||
funlen: | ||
lines: 100 | ||
statements: 50 | ||
goconst: | ||
min-len: 2 | ||
min-occurrences: 2 | ||
gocritic: | ||
enabled-tags: | ||
- diagnostic | ||
- experimental | ||
- opinionated | ||
- performance | ||
- style | ||
disabled-checks: | ||
- dupImport # https://github.com/go-critic/go-critic/issues/845 | ||
- ifElseChain | ||
- octalLiteral | ||
- whyNoLint | ||
- wrapperFunc | ||
- unnamedResult | ||
settings: | ||
hugeParam: | ||
sizeThreshold: 512 | ||
rangeValCopy: | ||
sizeThreshold: 512 | ||
gocyclo: | ||
min-complexity: 15 | ||
goimports: | ||
local-prefixes: github.com/k8snetworkplumbingwg/sriov-network-device-plugin | ||
gomnd: | ||
settings: | ||
mnd: | ||
# don't include the "operation" and "assign" | ||
checks: argument,case,condition,return | ||
lll: | ||
line-length: 140 | ||
misspell: | ||
locale: US | ||
prealloc: | ||
# Report preallocation suggestions only on simple loops that have no returns/breaks/continues/gotos in them. | ||
# True by default. | ||
simple: true | ||
range-loops: true # Report preallocation suggestions on range loops, true by default | ||
for-loops: false # Report preallocation suggestions on for loops, false by default | ||
|
||
linters: | ||
# please, do not use `enable-all`: it's deprecated and will be removed soon. | ||
# inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint | ||
disable-all: true | ||
enable: | ||
- bodyclose | ||
# TODO fix issues- deadcode | ||
- depguard | ||
- dogsled | ||
# TODO fix issues- dupl | ||
# TODO fix issues- errcheck | ||
- exportloopref | ||
- exhaustive | ||
# TODO fix issues- funlen | ||
#- gochecknoinits | ||
# TODO fix issues- goconst | ||
# TODO fix issues- gocritic | ||
# TODO fix issues- gocyclo | ||
- gofmt | ||
# TODO fix issues- goimports | ||
# TODO fix issues- gomnd | ||
- goprintffuncname | ||
# TODO fix issues- gosec | ||
# TODO fix issues- gosimple | ||
#- govet | ||
# TODO fix issues- ineffassign | ||
# TODO fix issues- lll | ||
- misspell | ||
# TODO fix issues- nakedret | ||
# TODO fix issues- prealloc | ||
- rowserrcheck | ||
#- scopelint | ||
# TODO fix issues- staticcheck | ||
- structcheck | ||
# TODO fix issues- stylecheck | ||
- typecheck | ||
# TODO fix issues- unconvert | ||
# TODO fix issues- unparam | ||
- unused | ||
# TODO fix issues- varcheck | ||
# TODO fix issues- whitespace | ||
|
||
issues: | ||
# Excluding configuration per-path, per-linter, per-text and per-source | ||
exclude-rules: | ||
- path: _test\.go | ||
linters: | ||
- gomnd | ||
- gosec | ||
- dupl | ||
- lll | ||
- stylecheck | ||
- goconst | ||
|
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