-
Notifications
You must be signed in to change notification settings - Fork 1
/
.golangci.yml
51 lines (51 loc) · 1.13 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
linters-settings:
exhaustive:
default-signifies-exhaustive: false
gci:
local-prefixes: github.com/miniscruff/dotfiles
goconst:
min-len: 2
min-occurrences: 5
gocyclo:
min-complexity: 16
goimports:
local-prefixes: github.com/miniscruff/dotfiles
golint:
min-confidence: 0
govet:
check-shadowing: true
misspell:
locale: US
nolintlint:
allow-leading-space: true # don't require machine-readable nolint directives (i.e. with no leading space)
allow-unused: false # report any unused nolint directives
require-explanation: false # don't require an explanation for nolint directives
require-specific: false # don't require nolint directives to be specific about which linter is being skipped
linters:
enable:
- bodyclose
- dogsled
- dupl
- errcheck
- exhaustive
- goconst
- gocyclo
- gofmt
- goimports
- goprintffuncname
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- noctx
- nolintlint
- staticcheck
- stylecheck
- typecheck
- unconvert
- unparam
- unused
- whitespace
- wsl