forked from Azure/azure-service-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
34 lines (33 loc) · 1.02 KB
/
.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
run:
deadline: 5m
allow-parallel-runners: true
linters:
enable:
- gofmt
- staticcheck
- gosimple
- unused
- tparallel
- paralleltest
- prealloc
- unparam # This was added while we used go1.18 which means it's always been disabled. It may eventually be re-enabled and we'll need to fix what it finds
presets:
- bugs
- unused
disable:
# The below rules are disabled due to bug with go1.18 and generics: https://github.com/golangci/golangci-lint/issues/2859
- stylecheck
- musttag # Extremely slow, at least on CI machines
linters-settings:
govet:
check-shadowing: true
unused:
generated-is-used: true
exhaustive:
default-signifies-exhaustive: true
gosimple:
# See https://golangci-lint.run/usage/linters#gosimple for a breakdown of what's checked by this linter
checks:
- "all"
- "-S1002" # Comparison to bool explicitly can sometimes add clarity
- "-S1016" # Uncommon language feature, encourages coupling when it may not be appropriate