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