-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.golangci.yml
More file actions
77 lines (72 loc) · 1.38 KB
/
Copy path.golangci.yml
File metadata and controls
77 lines (72 loc) · 1.38 KB
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
---
version: "2"
output:
formats:
text:
path: stdout
print-issued-lines: false
linters:
default: all
disable:
- cyclop
- dupword
- err113
- exhaustruct
- forbidigo
- funlen
- gocognit
- goconst
- godot
- gomodguard
- lll
- mnd
- nlreturn
- noinlineerr
- tagliatelle
- testpackage
- varnamelen
- wsl
settings:
depguard:
rules:
main:
deny:
- pkg: github.com/davecgh/go-spew/spew
desc: not allowed
gocognit:
min-complexity: 10
gocritic:
# Enable multiple checks by tags, run `GL_DEBUG=gocritic golangci-lint run`
# to see all tags and checks. Empty list by default. See
# https://github.com/go-critic/go-critic#usage -> section "Tags".
enabled-tags:
- diagnostic
- experimental
- opinionated
- performance
- style
misspell:
locale: US
exclusions:
presets:
- comments
- common-false-positives
- std-error-handling
rules:
- path: cmd/golangci-lint-migrate
linters:
- godoclint
issues:
max-issues-per-linter: 0
max-same-issues: 0
formatters:
enable:
- gofmt
- gofumpt
- goimports
settings:
gofmt:
rewrite-rules:
- pattern: "interface{}"
replacement: "any"
# vim: set sw=2 ts=2 et: