forked from Azure/azure-service-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
30 lines (29 loc) · 811 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
run:
deadline: 5m
allow-parallel-runners: true
linters:
enable:
- gofmt
- megacheck
- 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:
- scopelint # obsoleted by exportloopref
# Disabled as deprecation was announced in golanci-lint 1.49
- structcheck
- deadcode
- varcheck
# The below rules are disabled due to bug with go1.18 and generics: https://github.com/golangci/golangci-lint/issues/2859
- staticcheck
- gosimple
- stylecheck
- unused
- musttag # Extremely slow, at least on CI machines
linters-settings:
govet:
check-shadowing: true