forked from jaegertracing/jaeger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
122 lines (97 loc) · 2.83 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
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, bodyclose, noctx]
- path: crossdock
linters: [noctx]
# 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:
# Plain ASCII identifiers.
- asciicheck
# Checks for dangerous unicode character sequences.
- bidichk
# Checks whether HTTP response body is closed successfully.
# TODO enable this but maybe find a way to disable in tests.
- bodyclose
# Check whether the function uses a non-inherited context.
- contextcheck
# Check declaration order of types, consts, vars and funcs.
- decorder
# Checks if package imports are in a list of acceptable packages.
- depguard
# Check for two durations multiplied together.
- durationcheck
# Checks `Err-` prefix for var and `-Error` suffix for error type.
- errname
# Suggests to use `%w` for error-wrapping.
# TODO enable this. Curently fails in about 20 places.
# - errorlint
# Checks for pointers to enclosing loop variables.
- exportloopref
- gocritic
- gofmt
- gofumpt
- goimports
# Allow or ban replace directives in go.mod
# or force explanation for retract directives.
# Maybe enable once we get rid of old sarama.
# - gomoddirectives
- gosec
# Linter that specializes in simplifying code.
- gosimple
- govet
# Detects when assignments to existing variables are not used.
- ineffassign
- misspell
# Finds naked/bare returns and requires change them.
- nakedret
# Require a bit more explicit returns.
- nilerr
# Finds sending HTTP request without context.Context.
- noctx
# TODO consider adding more linters, cf. https://olegk.dev/go-linters-configuration-the-right-version
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-use-default: false
skip-dirs:
- mocks
- thrift-0.9.2
- .*-gen
skip-files:
- ".*.pb.go$"