forked from TencentBlueKing/bk-iam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yaml
39 lines (37 loc) · 816 Bytes
/
.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
run:
# default concurrency is a available CPU number
concurrency: 4
# timeout for analysis, e.g. 30s, 5m, default is 1m
timeout: 2m
# exit code when at least one issue was found, default is 1
issues-exit-code: 1
# include test files or not, default is true
tests: false
# default is true. Enables skipping of directories:
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
skip-dirs-use-default: true
skip-files:
- ".*/mock/.*.go"
- ".*testing.go"
linters:
# enable-all: true
# disable-all: true
disable:
- errcheck
enable:
- nilerr
- nakedret
- lll
- gofmt
- gocritic
- gocyclo
- whitespace
# - bodyclose
# - nestif
# - gofumpt
# - godox
# - wsl
# - funlen
# - golint
# - cyclop
fast: false