-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yaml
65 lines (62 loc) · 1.52 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
# https://golangci-lint.run/usage/linters
linters:
disable-all: true
enable:
- asciicheck
- bodyclose
- depguard
- dogsled
- exportloopref
- gocyclo
- goprintffuncname
- gosimple
- govet
- importas
- misspell
- nakedret
- nilerr
- nolintlint
- typecheck
- unused
- usestdlibvars
- stylecheck
- errcheck
- ineffassign
- gosec
linters-settings:
staticcheck:
go: "1.19"
stylecheck:
go: "1.19"
# STxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
checks: [ "all", "-ST1000", "-ST1003","-ST1020","-ST1021" ]
gocyclo:
min-complexity: 40
gosec:
excludes:
- G110
- G304
config:
G301: "0750"
G302: "0640"
G306: "0640"
issues:
max-same-issues: 0
max-issues-per-linter: 0
# We are disabling default golangci exclusions because we want to help reviewers to focus on reviewing the most relevant
# changes in PRs and avoid nitpicking.
exclude-use-default: false
# List of regexps of issue texts to exclude, empty list by default.
exclude: [ ]
exclude-rules:
# With Go 1.16, the new embed directive can be used with an un-named import,
# revive (previously, golint) only allows these to be imported in a main.go, which wouldn't work for us.
# This directive allows the embed package to be imported with an underscore everywhere.
- linters:
- revive
source: _ "embed"
run:
timeout: 10m
allow-parallel-runners: true
tests: false
go: '1.19'