-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
73 lines (66 loc) · 1.06 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
70
71
72
73
run:
timeout: 10m
go: '1.20'
skip-dirs:
- mocks
linters-settings:
staticcheck:
go: "1.20"
checks: [ "all" ]
gocritic:
enabled-tags:
- diagnostic
- opinionated
- performance
- style
govet:
enable-all: true
lll:
line-length: 120
tab-width: 1
maligned:
suggest-new: true
linters:
disable-all: true
enable:
- goimports
- unused
- errcheck
- govet
- ineffassign
- prealloc
- gocritic
- misspell
- unconvert
- whitespace
- gofmt
- bodyclose
- depguard
- dogsled
- exportloopref
- exhaustive
- nakedret
- nolintlint
- typecheck
- unparam
- asciicheck
- godot
- staticcheck
- goheader
- nestif
- unused
- predeclared
- gosimple
- wastedassign
- revive
- gomoddirectives
- gomodguard
- gofumpt
- gci
- makezero
- nilnil
- tenv
- loggercheck
- usestdlibvars
service:
golangci-lint-version: 1.52.x # use a fixed version to avoid introducing unexpected linters