-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.golangci.yaml
More file actions
39 lines (35 loc) · 645 Bytes
/
.golangci.yaml
File metadata and controls
39 lines (35 loc) · 645 Bytes
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
run:
timeout: 10m
skip-dirs:
- holster
linters:
enable:
# Enabled by default
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- unused
# Disabled by default
- asasalint
- asciicheck
- bodyclose
- errorlint
- gci
- gocyclo
- gosec
- makezero
- noctx
- paralleltest
- prealloc
- reassign
- revive
- whitespace
- wsl
issues:
max-issues-per-linter: 0 # Unlimited
max-same-issues: 0 # Unlimited
# Not working with our version (requires 1.57), see https://github.com/golangci/golangci-lint/pull/4509
# exclude-dirs:
# - holster