-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
74 lines (73 loc) · 1.17 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
74
run:
skip-dirs:
- bin
- static
- third_party
- tests
skip-dirs-use-default: true
timeout: 5m
go: '1.18'
linters:
disable:
- gochecknoglobals
- funlen
# 1.22+
- wsl
- godox
- gocognit
- nolintlint
- testpackage
- noctx
- nlreturn
- gosimple
- gomnd
- goerr113
- exhaustive
- nestif
- stylecheck
- godot
- gofumpt
- whitespace
- unparam
- gci
- gochecknoinits
enable:
- asciicheck
- bodyclose
- deadcode
- depguard
- dogsled
- dupl
- errcheck
- exportloopref
- goconst
- gocritic
- gocyclo
- gofmt
- goheader
- goimports
- golint
- gomodguard
- goprintffuncname
- gosec
- govet
- ineffassign
- lll
- misspell
- prealloc
- rowserrcheck
- sqlclosecheck
- staticcheck
- structcheck
- typecheck
- unconvert
- unused
- varcheck
linters-settings:
govet: # 对于linter govet,我们手动开启了它的某些扫描规则
check-shadowing: true
check-unreachable: true
check-rangeloops: true
check-copylocks: true
lll:
line-length: 140