-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
80 lines (78 loc) · 1.98 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
linters:
enable-all: true
# Some things here we may want to leave disabled.
# Some we may want to enable, and then pay down as debt.
# Anything included here represented a more invasive set of changes to
# satisfy the linter than was desired during initial cleanup.
disable:
- canonicalheader
- contextcheck
- depguard
- err113
- errchkjson
- exhaustruct
- exportloopref
- forbidigo
- gochecknoglobals
- gocritic
- intrange
- ireturn
- musttag
- nilerr
- noctx
- paralleltest
- perfsprint
- tagalign
- tagliatelle
- tenv
- testifylint
- unconvert
- unparam
- varnamelen
- wastedassign
depguard:
# Rules to apply.
#
# Variables:
# - File Variables
# you can still use and exclamation mark ! in front of a variable to say not to use it.
# Example !$test will match any file that is not a go test file.
#
# `$all` - matches all go files
# `$test` - matches all go test files
#
# - Package Variables
#
# `$gostd` - matches all of go's standard library (Pulled from `GOROOT`)
#
# Default: Only allow $gostd in all files.
rules:
main:
list-mode: lax
# List of file globs that will match this list of settings to compare against.
# Default: $all
files:
- $all
# List of allowed packages.
allow:
- $gostd
- github.com/GSA-TTS/jemison/config
# Packages that are not allowed where the value is a suggestion.
deny:
- pkg: "github.com/sirupsen/logrus"
desc: not allowed
- pkg: "github.com/pkg/errors"
desc: Should be replaced by standard lib errors package
run:
timeout: 5m
issues-exit-code: 2
concurrency: 4
allow-parallel-runners: true
output:
formats:
- format: json
path: stderr
- format: checkstyle
path: report.xml
- format: colored-line-number
show-stats: true