2022-06-17 10:04:06 +03:00
|
|
|
---
|
|
|
|
run:
|
2024-06-10 11:49:42 +03:00
|
|
|
timeout: 5m
|
2023-08-14 16:29:51 +03:00
|
|
|
skip-files:
|
|
|
|
# Skip autogenerated files.
|
|
|
|
- ^.*\.(pb|y)\.go$
|
2024-08-07 15:49:16 +03:00
|
|
|
- dagger/dagger.gen.go
|
|
|
|
skip-dirs:
|
|
|
|
- dagger/internal
|
|
|
|
|
2022-06-17 10:04:06 +03:00
|
|
|
|
|
|
|
output:
|
|
|
|
sort-results: true
|
|
|
|
|
2019-04-25 11:38:07 +03:00
|
|
|
linters:
|
|
|
|
enable:
|
2022-08-03 07:30:51 +03:00
|
|
|
- depguard
|
|
|
|
- durationcheck
|
|
|
|
- errorlint
|
|
|
|
- exportloopref
|
|
|
|
- gofmt
|
2022-06-17 10:04:06 +03:00
|
|
|
- gofumpt
|
|
|
|
- goimports
|
2022-08-03 07:30:51 +03:00
|
|
|
- gosimple
|
|
|
|
- ineffassign
|
2022-06-17 10:04:06 +03:00
|
|
|
- misspell
|
2022-08-03 07:30:51 +03:00
|
|
|
- nolintlint
|
2024-11-08 11:54:31 +03:00
|
|
|
- perfsprint
|
2022-08-03 07:30:51 +03:00
|
|
|
- predeclared
|
|
|
|
- revive
|
|
|
|
- staticcheck
|
|
|
|
- unconvert
|
|
|
|
- unused
|
2024-11-11 17:19:33 +03:00
|
|
|
- usestdlibvars
|
2022-08-03 07:30:51 +03:00
|
|
|
- wastedassign
|
2022-06-17 10:04:06 +03:00
|
|
|
|
|
|
|
issues:
|
|
|
|
max-same-issues: 0
|
|
|
|
exclude-rules:
|
|
|
|
- path: _test.go
|
|
|
|
linters:
|
|
|
|
- errcheck
|
|
|
|
- govet
|
|
|
|
- structcheck
|
|
|
|
|
|
|
|
linters-settings:
|
2023-08-14 16:29:51 +03:00
|
|
|
depguard:
|
|
|
|
rules:
|
|
|
|
main:
|
|
|
|
deny:
|
|
|
|
#- pkg: "sync/atomic"
|
|
|
|
# desc: "Use go.uber.org/atomic instead of sync/atomic"
|
|
|
|
- pkg: "github.com/stretchr/testify/assert"
|
|
|
|
desc: "Use github.com/stretchr/testify/require instead of github.com/stretchr/testify/assert"
|
|
|
|
- pkg: "github.com/go-kit/kit/log"
|
|
|
|
desc: "Use github.com/go-kit/log instead of github.com/go-kit/kit/log"
|
|
|
|
- pkg: "io/ioutil"
|
|
|
|
desc: "Use corresponding 'os' or 'io' functions instead."
|
|
|
|
#- pkg: "regexp"
|
|
|
|
# desc: "Use github.com/grafana/regexp instead of regexp"
|
2022-06-17 10:04:06 +03:00
|
|
|
errcheck:
|
2023-09-03 20:34:37 +03:00
|
|
|
exclude-functions:
|
|
|
|
# The following 2 methods always return nil as the error
|
|
|
|
- (*github.com/cespare/xxhash/v2.Digest).Write
|
|
|
|
- (*github.com/cespare/xxhash/v2.Digest).WriteString
|
|
|
|
- (*bufio.Writer).WriteRune
|
2022-06-17 10:04:06 +03:00
|
|
|
goimports:
|
|
|
|
local-prefixes: github.com/prometheus/client_golang
|
|
|
|
gofumpt:
|
|
|
|
extra-rules: true
|
2024-11-08 11:54:31 +03:00
|
|
|
perfsprint:
|
|
|
|
# Optimizes even if it requires an int or uint type cast.
|
|
|
|
int-conversion: true
|
|
|
|
# Optimizes into `err.Error()` even if it is only equivalent for non-nil errors.
|
|
|
|
err-error: true
|
|
|
|
# Optimizes `fmt.Errorf`.
|
|
|
|
errorf: true
|
|
|
|
# Optimizes `fmt.Sprintf` with only one argument.
|
|
|
|
sprintf1: true
|
|
|
|
# Optimizes into strings concatenation.
|
|
|
|
strconcat: true
|
2023-08-14 16:29:51 +03:00
|
|
|
revive:
|
|
|
|
rules:
|
|
|
|
# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unused-parameter
|
|
|
|
- name: unused-parameter
|
|
|
|
severity: warning
|
|
|
|
disabled: true
|