This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.golangci.yml
83 lines (83 loc) · 1.58 KB
/
.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
run:
deadline: 5m
tests: true
modules-download-mode: readonly
output:
format: colored-line-number
print-issued-lines: true
print-linter-name: true
linters-settings:
depguard:
list-type: blacklist
include-go-root: true
packages:
- log
- github.com/satori/go.uuid
errcheck:
check-type-assertions: true
check-blank: true
goconst:
min-len: 3
min-occurrences: 3
gocritic:
enabled-tags:
- diagnostic
- performance
- style
- opinionated
- experimental
disabled-checks:
- sloppyReassign
gofmt:
simplify: true
golint:
min-confidence: 0.8
govet:
check-shadowing: true
maligned:
suggest-new: true
misspell:
locale: US
prealloc:
simple: true
range-loops: true
for-loops: false
unused:
check-exported: false
linters:
disable-all: true
enable:
- deadcode
- depguard
- errcheck
- goconst
- gocritic
- gofmt
- goimports
- golint
- gosec
- gosimple
- govet
- ineffassign
- interfacer
- maligned
- misspell
- prealloc
- scopelint
- staticcheck
- structcheck
- unconvert
- unused
- varcheck
issues:
max-per-linter: 20
max-same-issues: 3
new: false
exclude-use-default: false
exclude:
- should call os.Exit to set exit code
- "G301: Expect directory permissions to be 0750 or less"
- "G302: Expect file permissions to be 0600 or less"
- "G304: Potential file inclusion via variable"
- "G104: Errors unhandled"
- "G204: Subprocess launched with variable"