-
Notifications
You must be signed in to change notification settings - Fork 531
/
.golangci.yml
77 lines (66 loc) · 2.2 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
output:
formats:
- format: line-number
linters:
enable:
- gci
- revive
- gofmt
- misspell
- errorlint
- forbidigo
- loggercheck
linters-settings:
errcheck:
# path to a file containing a list of functions to exclude from checking
# see https://github.com/kisielk/errcheck#excluding-functions for details
exclude-functions:
- (*github.com/grafana/dskit/spanlogger.SpanLogger).Error
- (github.com/go-kit/kit/log.Logger).Log
- (github.com/go-kit/log.Logger).Log
- (github.com/mitchellh/colorstring).Println
- (github.com/opentracing/opentracing-go.Tracer).Inject
- io.Copy
- io/ioutil.ReadFile
- io/ioutil.WriteFile
gci:
# Section configuration to compare against.
# Section names are case-insensitive and may contain parameters in ().
# The default order of sections is `standard > default > custom > blank > dot`,
# If `custom-order` is `true`, it follows the order of `sections` option.
# Default: ["standard", "default"]
sections:
- standard
- default
- prefix(github.com/grafana/mimir)
# Skip generated files.
# Default: true
skip-generated: true
# Enable custom order of sections.
# If `true`, make the section order the same as the order of `sections`.
# Default: false
custom-order: true
errorlint:
# Check for plain error comparisons.
comparison: true
# Do not check for plain type assertions and type switches.
asserts: false
# Do not check whether fmt.Errorf uses the %w verb for formatting errors.
errorf: false
forbidigo:
forbid:
# We can't use faillint for a rule like this, because it does not support matching methods on structs or interfaces (see https://github.com/fatih/faillint/issues/18)
- p: ^.*\.CloseSend.*$
msg: Do not use CloseSend on a server-streaming gRPC stream. Use util.CloseAndExhaust instead. See the documentation on CloseAndExhaust for further explanation.
run:
timeout: 10m
# List of build tags, all linters use it.
build-tags:
- netgo
- stringlabels
- requires_docker
- requires_libpcap
issues:
exclude-rules:
- linters: [ revive ]
text: "if-return"