-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
.golangci.yaml
74 lines (64 loc) · 1.53 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
run:
timeout: 10m
build-tags:
- e2e
- upgrade
skip-dirs:
- pkg/client
skip-files:
- ".pb.go$"
linters:
enable:
- asciicheck
- depguard
- errorlint
- gosec
- importas
- prealloc
- revive
- stylecheck
- tparallel
- unconvert
- unparam
disable:
- errcheck
linters-settings:
depguard:
rules:
main:
deny:
- pkg: sync/atomic
desc: "please use type-safe atomics from go.uber.org/atomic"
importas:
no-unaliased: true
alias:
- pkg: knative.dev/serving/pkg/apis/autoscaling/v1alpha1
alias: autoscalingv1alpha1
issues:
include:
# Disable excluding issues about comments from golint.
- EXC0002
exclude-rules:
- path: test # Excludes /test, *_test.go etc.
linters:
- gosec
- unparam
# Ignore "context.Context should be the first parameter of a function" errors in tests.
# See: https://github.com/golang/lint/issues/422
- path: test
text: "context.Context should be the first"
linters:
- revive
# Allow source and sink receivers in conversion code for clarity.
- path: _conversion\.go
text: "ST1016:"
linters:
- stylecheck
- path: _conversion\.go
text: "receiver name"
linters:
- revive
# This check has quite a few false positives where there isn't much value in the package comment.
- text: "ST1000: at least one file in a package should have a package comment"
linters:
- stylecheck