-
Notifications
You must be signed in to change notification settings - Fork 1
/
.golangci.yaml
76 lines (74 loc) · 1.77 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
66
67
68
69
70
71
72
73
74
75
76
# https://golangci-lint.run/usage/linters
linters:
disable-all: true
enable:
# - asciicheck
# - bodyclose
# - depguard
# - dogsled
# - errcheck
# - errorlint
# - exportloopref
# - gci
# - goconst
# - gocritic
# - gocyclo
# - gofmt
# - goimports
# - goprintffuncname
# - gosec
# - gosimple
# - govet
# - ineffassign
- misspell
# - nakedret
- nilerr
# - nolintlint
# - prealloc
# - staticcheck
# - stylecheck
# - typecheck
# - unconvert
# - unparam
# - unused
- usestdlibvars
- whitespace
linters-settings:
staticcheck:
go: "1.19"
stylecheck:
go: "1.19"
# STxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
checks: [ "all", "-ST1000", "-ST1003" ]
depguard:
include-go-root: true
packages:
- io/ioutil # https://go.dev/doc/go1.16#ioutil
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