-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.golangci.yaml
More file actions
66 lines (66 loc) · 1.98 KB
/
.golangci.yaml
File metadata and controls
66 lines (66 loc) · 1.98 KB
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
version: "2"
linters:
default: all
disable:
- cyclop # covered by gocyclo
- depguard # requires configuration for all non-stdlib deps
- exhaustruct # irrelevant for modules
- funlen # rely on code review to limit function length
- gocognit # dubious "cognitive overhead" quantification
- ireturn # "accept interfaces, return structs" isn't ironclad
- lll # don't want hard limits for line length
- maintidx # covered by gocyclo
- mnd # some unnamed constants are okay
- nlreturn # generous whitespace violates house style
- noinlineerr # inline error handling is idiomatic here
- testpackage # internal tests are fine
- varnamelen # too strict for common from/to and format f variables
- wrapcheck # don't _always_ need to wrap errors
- wsl # generous whitespace violates house style
- wsl_v5 # generous whitespace violates house style
settings:
errcheck:
check-type-assertions: true
forbidigo:
forbid:
- pattern: ^fmt\.Print
- pattern: ^log\.
- pattern: ^print$
- pattern: ^println$
- pattern: ^panic$
godox:
# TODO, OPT, etc. comments are fine to commit. Use FIXME comments for
# temporary hacks, and use godox to prevent committing them.
keywords:
- FIXME
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- err113
text: do not define dynamic errors
- linters:
- dupl
path: private/bufpkg/bufstate/global_state_test.go
- linters:
- dupl
path: private/bufpkg/bufstate/module_state_test.go
- linters:
- goconst
path: cmd/release/main_test.go
- linters:
- gosec
text: "G705:"
issues:
max-same-issues: 0
formatters:
enable:
- gci
- gofmt
exclusions:
generated: lax