-
Notifications
You must be signed in to change notification settings - Fork 41
/
.golangci.yml
69 lines (66 loc) · 1.16 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
62
63
64
65
66
67
68
69
# Options for analysis running.
run:
timeout: 15m
linters:
# # Disable all linters.
# # Default: false
disable-all: true
# # Enable specific linter
# # https://golangci-lint.run/usage/linters/#enabled-by-default-linters
enable:
# defaults
- revive
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- typecheck
- unused
# extras
- errname
- errorlint
- gci
- gochecknoglobals
- gocyclo
- godox
- gofumpt
- gosec
- maintidx
- misspell
- nakedret
- nestif
- nilerr
- nilnil
- noctx
- nolintlint
- nonamedreturns
- prealloc
- predeclared
- revive
- thelper
- unparam
linters-settings:
errcheck:
exclude-functions:
- (io.Writer).Write
- (*text/template.Template).Parse
revive:
rules:
- name: receiver-naming
disabled: true
issues:
exclude:
- G115
exclude-rules:
- path: .
linters:
- typecheck
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gochecknoglobals
- gocyclo
- dupl
- gosec
- nilnil