forked from jaegertracing/jaeger
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.golangci.yml
64 lines (59 loc) · 1.29 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
issues:
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters: [gosec]
# See https://github.com/jaegertracing/jaeger/issues/4488
- path: internal/grpctest/
linters: [staticcheck]
- linters: [gocritic]
text: "dupArg"
- linters: [gocritic]
text: "exitAfterDefer"
- linters: [gocritic]
text: "appendAssign"
max-issues-per-linter: 0
max-same-issues: 0
linters:
disable:
- errcheck
enable:
- bidichk
- contextcheck
- depguard
- gocritic
- gofumpt
- goimports
- gosec
- govet
- misspell
linters-settings:
depguard:
list-type: blacklist
include-go-root: true
packages:
- io/ioutil
packages-with-error-message:
- io/ioutil: "Use os or io instead of io/ioutil"
goimports:
local-prefixes: github.com/jaegertracing/jaeger
gosec:
# To specify a set of rules to explicitly exclude.
# Available rules: https://github.com/securego/gosec#available-rules
excludes:
- G104
- G107
- G404
- G601
gosimple:
go: "1.20"
run:
go: "1.20"
timeout: 20m
skip-dirs:
- mocks
- thrift-0.9.2
- .*-gen
skip-files:
- ".*.pb.go$"