forked from crumbhole/argocd-lovely-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yaml
75 lines (75 loc) · 1.31 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
75
run:
timeout: 5m
linters:
enable:
- asasalint
- bidichk
- bodyclose
- containedctx
- contextcheck
- copyloopvar
- dogsled
- dupl
- dupword
- durationcheck
- errorlint
- errchkjson
- exhaustive
- forcetypeassert
- gochecknoglobals
- goconst
- gocritic
# - goerr113
- gofmt
- goprintffuncname
- gosec
- grouper
- ireturn
- loggercheck
- makezero
- mirror
- misspell
# - musttag
- nakedret
# - nestif
- nilerr
- noctx
- nonamedreturns
- nosprintfhostport
- prealloc
- predeclared
- promlinter
- reassign
- revive
- sqlclosecheck
- stylecheck
- tagliatelle
- tenv
- thelper
- tparallel
- unconvert
- unparam
- usestdlibvars
# - varnamelen
- wastedassign
- whitespace
linters-settings:
revive:
rules:
# https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#exported
- name: exported
severity: warning
disabled: false
# arguments:
# - "preserveScope"
# - "checkPrivateReceivers"
# - "sayRepetitiveInsteadOfStutters"
issues:
max-issues-per-linter: 50
max-same-issues: 0
include:
- EXC0011
- EXC0012
- EXC0013
- EXC0014
- EXC0015