-
Notifications
You must be signed in to change notification settings - Fork 19
/
.golangci.yml
84 lines (82 loc) · 1.19 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
81
82
83
84
# SPDX-FileCopyrightText: 2024 SUSE LLC
#
# SPDX-License-Identifier: Apache-2.0
linters-settings:
stylecheck:
dot-import-whitelist:
- github.com/uyuni-project/uyuni-tools/shared/l10n
initialisms:
# Default
- ACL
- API
- ASCII
- CPU
- DNS
- EOF
- GUID
- HTML
- HTTP
- HTTPS
- ID
- IP
- JSON
- RPC
- SLA
- SMTP
- SQL
- SSH
- TCP
- TLS
- TTL
- UDP
- UI
- GID
- UID
- UUID
- URI
- URL
- UTF8
- VM
- XML
- RTP
- DB
# Added
- SCC
- SSL
gofmt:
simplify: true
gocyclo:
min-complexity: 10
govet:
disable:
- printf
linters:
enable:
- unused
- dupl
- errcheck
- errname
- errorlint
- godot
- gofmt
- goimports
- gosimple
#- gocyclo
- ineffassign
- govet
- lll
- misspell
- revive
- staticcheck
- stylecheck
- unparam
- unused
- whitespace
issues:
exclude-rules:
- linters:
- revive
text: "dot-imports"
- linters:
- revive
text: "stutters"