forked from kube-bind/kube-bind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yaml
74 lines (70 loc) · 1.41 KB
/
.golangci.yaml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
run:
timeout: 10m
allow-parallel-runners: true
linters:
disable-all: true
enable:
- asasalint
- asciicheck
- bidichk
- bodyclose
- containedctx
- copyloopvar
- dupword
- durationcheck
- errcheck
- errchkjson
- gocritic
- godot
- gofmt
- goprintffuncname
- gosec
- gosimple
- govet
- importas
- ineffassign
- misspell
- nilerr
- noctx
- nolintlint
- nosprintfhostport
- prealloc
- revive
- staticcheck
- unconvert
- unused
- usestdlibvars
- whitespace
linters-settings:
goconst:
ignore-tests: true
nolintlint:
allow-unused: false
allow-leading-space: false
require-specific: true
revive:
# make sure error-strings issues actually surface (default confidence is 0.8)
confidence: 0.6
rules:
- name: context-keys-type
- name: duplicated-imports
- name: error-return
- name: error-strings
- name: error-naming
- name: if-return
- name: increment-decrement
- name: var-declaration
- name: package-comments
- name: range
- name: receiver-naming
- name: time-naming
- name: errorf
- name: superfluous-else
- name: unreachable-code
- name: bool-literal-in-expr
- name: constant-logical-expr
issues:
exclude-dirs:
- pkg/client
max-same-issues: 0
max-issues-per-linter: 0