-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.golangci.yaml
More file actions
53 lines (46 loc) · 888 Bytes
/
Copy path.golangci.yaml
File metadata and controls
53 lines (46 loc) · 888 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
run:
timeout: 30m
version: "2"
formatters:
exclusions:
paths:
- third_party
- vendor
output:
formats:
text:
path: stderr
issues:
max-issues-per-linter: 0
max-same-issues: 0
linters:
exclusions:
paths:
- third_party
- vendor
default: standard
enable:
- gocritic
- govet
- errorlint
- ineffassign
- revive
- staticcheck
- testifylint
- unused
- usestdlibvars
settings:
revive:
rules:
- name: exported
disabled: true
staticcheck:
checks:
- "all"
- "-QF1008" # Omit embedded fields from selector expression
- "-ST1000" # Package comments
- "-ST1020" # Exported function comments
- "-ST1021" # Exported type comments
- "-ST1022" # Exported var/const comments
testifylint:
enable-all: true