-
Notifications
You must be signed in to change notification settings - Fork 371
/
.golangci.yml
61 lines (57 loc) · 1.27 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# all available settings of specific linters
linters-settings:
gocritic:
enabled-tags:
- performance
- diagnostic
- style
- experimental
- opinionated
disabled-checks:
- hugeParam
- rangeValCopy
- unnamedResult
gofmt:
simplify: true
goimports:
# put imports beginning with prefix after 3rd-party packages;
# it's a comma-separated list of prefixes
local-prefixes: sigs.k8s.io/krew
errcheck:
check-type-assertions: false
check-blank: false
staticcheck:
checks:
- all
- "-SA1019" # allow usage of global rand.Seed
# options for analysis running
run:
# include test files
tests: true
issues:
# which dirs to skip: they won't be analyzed;
# can use regexp here: generated.*, regexp is applied on full path;
# default value is empty list, but next dirs are always skipped independently
# from this option's value:
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
exclude-dirs:
- hack
- docs
linters:
disable-all: true
enable:
- errcheck
- gocritic
- gofmt
- goimports
- gosimple
- govet
- ineffassign
- misspell
- prealloc
- revive
- staticcheck
- stylecheck
- unconvert
- unparam
- unused