-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.golangci.yaml
83 lines (83 loc) · 1.96 KB
/
.golangci.yaml
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
run:
deadline: 5m
skip-files: []
linters-settings:
gosec:
excludes:
# Error types not being check is covered by other linters
- G104
- G307
# Azb invokes commands / read files on the users behalf. As it runs under the users identity on their machine
# I think the impact of passing user input is minimal. See: #351
- G304
- G204
govet:
check-shadowing: true
gocyclo:
min-complexity: 12
maligned:
suggest-new: true
goconst:
min-len: 3
min-occurrences: 3
misspell:
locale: US
ignore-words:
- listend
- analyses
linters:
enable:
- vet
- revive
- gofmt
- deadcode
- varcheck
- structcheck
- misspell
- errcheck
- gosimple
- govet
- ineffassign
- gosec
issues:
exclude-use-default: false
max-per-linter: 0
max-same-issues: 0
exclude: []
exclude-rules:
- text: "package-comments: should have a package comment"
linters:
- revive
#Ignore gocui funcs
- text: Error return value of `g.DeleteView` is not checked
linters:
- errcheck
- text: Error return value of `g.SetCurrentView` is not checked
linters:
- errcheck
- text: Error return value of `*.SetCursor` is not checked
linters:
- errcheck
#Ignore shadowed err and ctx variables
- text: declaration of "err" shadows declaration at *
linters:
- govet
- text: declaration of "ctx" shadows declaration at *
linters:
- govet
#Ignore comments for KeyBinding Handler funcs
- path: internal/pkg/keybindings/listhandlers.go
linters:
- revive
- path: internal/pkg/keybindings/commandpanelhandlers.go
linters:
- revive
- path: internal/pkg/keybindings/itemhandlers.go
linters:
- revive
- path: internal/pkg/keybindings/globalhandlers.go
linters:
- revive
- path: internal/pkg/*
linters:
- revive