-
-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy path.golangci.yml
More file actions
115 lines (115 loc) · 2.49 KB
/
Copy path.golangci.yml
File metadata and controls
115 lines (115 loc) · 2.49 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
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
version: "2"
run:
go: "1.24"
linters:
enable:
- bodyclose
- copyloopvar
- depguard
- forbidigo
- gocritic
- misspell
- noctx
- nolintlint
- perfsprint
- revive
- testifylint
- thelper
- tparallel
- unconvert
- unparam
- usetesting
- wastedassign
settings:
depguard:
rules:
main:
deny:
- pkg: github.com/pkg/errors
desc: use stdlib instead
- pkg: math/rand$
desc: use math/rand/v2 instead
- pkg: github.com/apex/log
desc: use caarlos0/log instead
forbidigo:
forbid:
- pattern: ioutil\.*
gocritic:
disabled-checks:
- appendAssign
perfsprint:
int-conversion: false
err-error: false
errorf: true
sprintf1: false
strconcat: false
revive:
enable-all-rules: false
rules:
- name: blank-imports
- name: context-as-argument
- name: context-keys-type
- name: comment-spacings
- name: dot-imports
- name: empty-block
- name: empty-lines
- name: error-naming
- name: error-return
- name: error-strings
- name: errorf
- name: increment-decrement
- name: indent-error-flow
- name: modifies-value-receiver
- name: range
- name: receiver-naming
- name: redefines-builtin-id
- name: superfluous-else
- name: time-naming
- name: unexported-return
- name: unreachable-code
- name: unused-parameter
- name: var-declaration
- name: var-naming
# we are not providing an API anyway... maybe someday...
# - name: exported
# - name: package-comments
staticcheck:
checks:
- all
- -SA1019
testifylint:
enable-all: true
disable:
- error-is-as
usetesting:
context-background: true
context-todo: true
os-chdir: true
os-mkdir-temp: true
os-setenv: true
os-create-temp: true
os-temp-dir: true
exclusions:
generated: lax
presets:
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- noctx
- perfsprint
path: _test\.go
paths:
- third_party$
- builtin$
- examples$
formatters:
enable:
- gofumpt
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$