forked from bombsimon/wsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
78 lines (69 loc) · 1.28 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
---
run:
deadline: 1m
issues-exit-code: 1
tests: true
skip-dirs:
- vendor$
output:
format: colored-line-number
print-issued-lines: false
linters-settings:
gocognit:
min-complexity: 10
depguard:
list-type: blacklist
include-go-root: false
packages:
- github.com/davecgh/go-spew/spew
misspell:
locale: US
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
linters:
enable-all: true
disable:
- cyclop
- deadcode
- dupl
- dupword
- exhaustivestruct
- exhaustruct
- forbidigo
- funlen
- gci
- gocognit
- gocyclo
- godox
- golint
- gomnd
- ifshort
- interfacer
- lll
- maintidx
- maligned
- nakedret
- nestif
- nlreturn
- nosnakecase
- paralleltest
- prealloc
- scopelint
- structcheck
- testpackage
- varcheck
- varnamelen
fast: false
issues:
exclude-use-default: true
max-issues-per-linter: 0
max-same-issues: 0
# vim: set sw=2 ts=2 et: