-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
62 lines (56 loc) · 963 Bytes
/
.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
service:
# use the fixed version to not introduce new linters unexpectedly
golangci-lint-version: '1.47.2'
run:
go: '1.18'
timeout: 1m
tests: false
linters:
enable-all: true
disable:
- containedctx
- depguard
- dogsled
- exhaustive
- exhaustivestruct
- gci
- gochecknoglobals
- gocritic
- godot
- godox
- goerr113
- goimports
- gomnd
- ifshort
- ireturn
- lll
- maligned
- misspell
- nlreturn
- prealloc
- tagliatelle
- testpackage
- varnamelen
- wsl
linters-settings:
wrapcheck:
ignoreSigs:
- .Errorf(
- errors.New(
- errors.Unwrap(
- .Wrap(
- .Wrapf(
- .WithMessage(
- .WithMessagef(
- .WithStack(
- .Err(
gofumpt:
lang-version: '1.18'
extra-rules: true
govet:
check-shadowing: true
enable-all: true
disable:
- fieldalignment
stylecheck:
go: '1.18'