-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
54 lines (50 loc) · 932 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
# More info on config here: https://golangci-lint.run/usage/configuration/
run:
deadline: 5m
issues-exit-code: 1
allow-parallel-runners: true
tests: true
output:
sort-results: false
print-issued-lines: false
print-linter-name: true
issues:
max-same-issues: 0
max-issues-per-linter: 0
fix: true
linters-settings:
govet:
shadow: true
gci:
custom-order: true
skip-generated: true
sections:
- standard
- default
- Prefix(github.com/tychoish)
stylecheck:
checks: ["all", "-ST1023", "-ST1003", "-ST4023"]
linters:
disable-all: true
enable:
- asciicheck
- bodyclose
- dupword
- durationcheck
- errcheck
- errchkjson
- exhaustive
- copyloopvar
- gci
- goimports
- gosimple
- govet
- ineffassign
- misspell
- noctx
- nolintlint
- revive
- staticcheck
- stylecheck
- unconvert
- unused