lego/.golangci.toml

187 lines
6.3 KiB
TOML
Raw Normal View History

[run]
deadline = "5m"
skip-files = []
[linters-settings]
[linters-settings.govet]
check-shadowing = true
[linters-settings.gocyclo]
min-complexity = 12.0
[linters-settings.maligned]
suggest-new = true
[linters-settings.goconst]
min-len = 3.0
min-occurrences = 3.0
[linters-settings.misspell]
locale = "US"
ignore-words = ["internetbs"]
2021-03-04 19:16:59 +00:00
[linters-settings.depguard]
list-type = "blacklist"
include-go-root = false
packages = ["github.com/pkg/errors"]
[linters-settings.godox]
keywords = ["FIXME"]
[linters-settings.gocritic]
enabled-tags = ["diagnostic", "style", "performance"]
disabled-checks= [
"paramTypeCombine", # already handle by gofumpt.extra-rules
"whyNoLint", # already handle by nonolint
"unnamedResult",
"hugeParam",
"sloppyReassign",
"rangeValCopy",
"octalLiteral",
"ptrToRefParam",
2021-06-08 09:09:39 +00:00
"appendAssign",
2021-11-03 19:39:12 +00:00
"ruleguard",
"httpNoBody",
"exposedSyncMutex",
2021-03-04 19:16:59 +00:00
]
[linters]
enable-all = true
disable = [
2021-03-04 19:16:59 +00:00
"interfacer", # deprecated
"maligned", # deprecated
2021-03-27 12:49:40 +00:00
"scopelint", # deprecated
2021-06-08 09:09:39 +00:00
"golint", # deprecated
2021-03-27 12:49:40 +00:00
"cyclop", # duplicate of gocyclo
"lll",
2021-03-27 12:49:40 +00:00
"gosec",
"dupl", # not relevant
"prealloc", # too many false-positive
"bodyclose", # too many false-positive
2020-02-10 17:20:52 +00:00
"gomnd",
2020-05-08 17:35:25 +00:00
"testpackage", # not relevant
2021-03-27 12:49:40 +00:00
"tparallel", # not relevant
"paralleltest", # not relevant
2020-05-08 17:35:25 +00:00
"nestif", # too many false-positive
2021-03-27 12:49:40 +00:00
"wrapcheck",
2020-05-08 17:35:25 +00:00
"goerr113", # not relevant
2020-10-27 11:01:05 +00:00
"nlreturn", # not relevant
2021-03-27 12:49:40 +00:00
"wsl", # not relevant
"exhaustive", # not relevant
"exhaustivestruct", # not relevant
2020-12-28 22:39:00 +00:00
"makezero", # not relevant
2021-02-08 21:25:51 +00:00
"ifshort", # not relevant
2021-03-27 12:49:40 +00:00
"forbidigo", # not relevant
2021-11-03 19:39:12 +00:00
"varnamelen", # not relevant
"nilnil", # not relevant
"ireturn", # not relevant
"contextcheck", # too many false-positive
"tenv", # we already have a test "framework" to handle env vars
2021-03-27 12:49:40 +00:00
"noctx",
2021-03-04 19:16:59 +00:00
"forcetypeassert",
2021-06-08 09:09:39 +00:00
"tagliatelle",
2021-08-25 09:44:11 +00:00
"errname",
2022-01-27 08:18:53 +00:00
"errchkjson",
]
[issues]
exclude-use-default = false
max-per-linter = 0
2019-02-18 12:42:10 +00:00
max-same-issues = 0
exclude = [
2019-02-18 12:28:19 +00:00
"Error return value of .((os\\.)?std(out|err)\\..*|.*Close|.*Flush|os\\.Remove(All)?|.*printf?|os\\.(Un)?Setenv). is not checked",
"exported (type|method|function) (.+) should have comment or be unexported",
2021-03-27 12:49:40 +00:00
"ST1000: at least one file in a package should have a package comment"
]
[[issues.exclude-rules]]
path = "(.+)_test.go"
2022-01-27 08:18:53 +00:00
linters = ["funlen", "goconst", "maintidx"]
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "providers/dns/dns_providers.go"
linters = ["gocyclo"]
[[issues.exclude-rules]]
path = "providers/dns/gcloud/googlecloud_test.go"
text = "string `(lego\\.wtf|manhattan)` has (\\d+) occurrences, make it a constant"
[[issues.exclude-rules]]
path = "providers/dns/zoneee/zoneee_test.go"
text = "string `(bar|foo)` has (\\d+) occurrences, make it a constant"
[[issues.exclude-rules]]
path = "certcrypto/crypto.go"
2020-10-27 11:01:05 +00:00
text = "(tlsFeatureExtensionOID|ocspMustStapleFeature) is a global variable"
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "challenge/dns01/nameserver.go"
2020-10-27 11:01:05 +00:00
text = "(defaultNameservers|recursiveNameservers|dnsTimeout|fqdnSoaCache|muFqdnSoaCache) is a global variable"
[[issues.exclude-rules]]
path = "challenge/dns01/nameserver_test.go"
2020-10-27 11:01:05 +00:00
text = "findXByFqdnTestCases is a global variable"
[[issues.exclude-rules]]
path = "challenge/http01/domain_matcher.go"
text = "string `Host` has \\d occurrences, make it a constant"
[[issues.exclude-rules]]
path = "challenge/http01/domain_matcher.go"
text = "cyclomatic complexity \\d+ of func `parseForwardedHeader` is high"
[[issues.exclude-rules]]
path = "challenge/http01/domain_matcher.go"
text = "Function 'parseForwardedHeader' has too many statements"
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "challenge/tlsalpn01/tls_alpn_challenge.go"
2020-10-27 11:01:05 +00:00
text = "idPeAcmeIdentifierV1 is a global variable"
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "log/logger.go"
2020-10-27 11:01:05 +00:00
text = "Logger is a global variable"
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "e2e/(dnschallenge/)?[\\d\\w]+_test.go"
2020-10-27 11:01:05 +00:00
text = "load is a global variable"
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "providers/dns/([\\d\\w]+/)*[\\d\\w]+_test.go"
2020-10-27 11:01:05 +00:00
text = "envTest is a global variable"
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "providers/dns/namecheap/namecheap_test.go"
2020-10-27 11:01:05 +00:00
text = "testCases is a global variable"
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "providers/dns/acmedns/acmedns_test.go"
2020-10-27 11:01:05 +00:00
text = "egTestAccount is a global variable"
2019-02-18 12:28:19 +00:00
[[issues.exclude-rules]]
path = "providers/http/memcached/memcached_test.go"
2020-10-27 11:01:05 +00:00
text = "memcachedHosts is a global variable"
[[issues.exclude-rules]]
path = "providers/dns/sakuracloud/client_test.go"
text = "cyclomatic complexity 13 of func `(TestDNSProvider_cleanupTXTRecord_concurrent|TestDNSProvider_addTXTRecord_concurrent)` is high"
[[issues.exclude-rules]]
path = "providers/dns/dns_providers.go"
text = "Function 'NewDNSChallengeProviderByName' has too many statements"
[[issues.exclude-rules]]
path = "cmd/flags.go"
text = "Function 'CreateFlags' is too long"
[[issues.exclude-rules]]
path = "certificate/certificates.go"
text = "Function 'GetOCSP' is too long"
[[issues.exclude-rules]]
path = "providers/dns/otc/client.go"
text = "Function 'loginRequest' is too long"
[[issues.exclude-rules]]
path = "providers/dns/gandi/gandi.go"
text = "Function 'Present' is too long"
2019-10-24 23:27:40 +00:00
[[issues.exclude-rules]]
path = "cmd/zz_gen_cmd_dnshelp.go"
linters = ["gocyclo", "funlen"]
[[issues.exclude-rules]]
path = "providers/dns/checkdomain/client.go"
text = "`payed` is a misspelling of `paid`"
2020-02-10 17:20:52 +00:00
[[issues.exclude-rules]]
path = "providers/dns/namecheap/namecheap_test.go"
text = "cognitive complexity (\\d+) of func `TestDNSProvider_getHosts` is high"
2021-02-08 21:25:51 +00:00
[[issues.exclude-rules]]
path = "platform/tester/env_test.go"
linters = ["thelper"]
[[issues.exclude-rules]]
path = "providers/dns/oraclecloud/oraclecloud_test.go"
2021-03-04 19:16:59 +00:00
text = "SA1019: x509.EncryptPEMBlock has been deprecated since Go 1.16"
[[issues.exclude-rules]]
path = "challenge/http01/domain_matcher.go"
text = "yodaStyleExpr"
2022-01-27 08:18:53 +00:00
[[issues.exclude-rules]]
path = "providers/dns/dns_providers.go"
text = "Function name: NewDNSChallengeProviderByName,"