forked from redpanda-data/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
44 lines (41 loc) · 873 Bytes
/
.golangci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
run:
timeout: 30s
issues:
max-issues-per-linter: 0
max-same-issues: 0
# fix: true
linters-settings:
errcheck:
exclude: .errcheck.txt
gocritic:
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
disabled-checks:
- hugeParam # Micro-optimisations
- rangeValCopy # Micro-optimisations
- ifElseChain # Mostly false positives
- ptrToRefParam # False positives?
- importShadow # Probably not worth the hassle...
linters:
disable-all: true
enable:
# Default linters reported by golangci-lint help linters` in v1.39.0
# - deadcode
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- structcheck
- typecheck
# - unused
- varcheck
# Extra linters:
- gofmt
- goimports
- gocritic
# - bodyclose