mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
* chore(deps): update module github.com/golangci/golangci-lint (v1.61.0 → v1.62.0) in /tools | datasource | package | from | to | | ---------- | --------------------------------- | ------- | ------- | | go | github.com/golangci/golangci-lint | v1.61.0 | v1.62.0 | * adjust golangci-lint settings Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --------- Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
90 lines
1.8 KiB
YAML
90 lines
1.8 KiB
YAML
# v1.60.2
|
|
issues:
|
|
new-from-rev: 9101977dc81f64db077b9a1eda2fe401359854c9
|
|
# Maximum issues count per one linter. Set to 0 to disable.
|
|
# Default is 50.
|
|
max-issues-per-linter: 0
|
|
# Maximum count of issues with the same text. Set to 0 to disable.
|
|
# Default is 3.
|
|
max-same-issues: 0
|
|
include:
|
|
- EXC0012
|
|
- EXC0014
|
|
exclude-rules:
|
|
# Exclude some checks in tests
|
|
- path: _(test|gen)\.go
|
|
linters:
|
|
- cyclop
|
|
- dupl
|
|
- funlen
|
|
- gocognit
|
|
- gosec
|
|
- lll
|
|
- path: .*/types/.+\.go
|
|
linters:
|
|
# types have both pointer and value receivers due to JSON marshalling
|
|
- recvcheck
|
|
- path: _types\.go
|
|
linters:
|
|
- recvcheck
|
|
- lll
|
|
- path: fwprovider/.*_test\.go
|
|
linters:
|
|
- paralleltest
|
|
# Exclude `lll` issues for long lines with URLs.
|
|
- linters:
|
|
- lll
|
|
source: "^.*https?://.*$"
|
|
linters-settings:
|
|
exhaustive:
|
|
default-signifies-exhaustive: true
|
|
cyclop:
|
|
max-complexity: 25
|
|
dupl:
|
|
threshold: 150
|
|
goconst:
|
|
min-len: 10
|
|
min-occurrences: 4
|
|
gosec:
|
|
excludes:
|
|
- G115
|
|
funlen:
|
|
lines: 80
|
|
statements: 60
|
|
errcheck:
|
|
check-blank: true
|
|
wrapcheck:
|
|
ignorePackageGlobs:
|
|
# Prevent false-positive matches for errors from packages of the own module.
|
|
- github.com/bpg/terraform-provider-proxmox/*
|
|
linters:
|
|
enable-all: true
|
|
disable:
|
|
# deprecated
|
|
- exportloopref
|
|
- gocyclo
|
|
- rowserrcheck
|
|
- wastedassign
|
|
# require massive refactoring
|
|
- cyclop
|
|
- forcetypeassert
|
|
- funlen
|
|
- gocognit
|
|
# others
|
|
- canonicalheader
|
|
- depguard
|
|
- exhaustruct
|
|
- gci
|
|
- err113
|
|
- ireturn
|
|
- maintidx
|
|
- mnd
|
|
- nestif
|
|
- nlreturn
|
|
- perfsprint
|
|
- tagliatelle
|
|
- testpackage
|
|
- tparallel
|
|
- varnamelen
|
|
fast: false
|