forked from gravitational/teleport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.golangci.yml
72 lines (69 loc) · 2.07 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
issues:
exclude-rules:
- linters:
- gosimple
text: "S1002: should omit comparison to bool constant"
- linters:
- revive
text: "exported: exported const"
# TODO(hugoShaka): Remove once https://github.com/dominikh/go-tools/issues/1294 is fixed
- linters:
- unused
path: 'operator/controllers/resources/(.+)_controller_test\.go'
exclude-use-default: true
max-same-issues: 0
max-issues-per-linter: 0
linters:
disable-all: true
enable:
- bodyclose
- depguard
- gci
- goimports
- gosimple
- govet
- ineffassign
- misspell
- nolintlint
- revive
- staticcheck
- unconvert
- unused
linters-settings:
depguard:
list-type: denylist
include-go-root: true # check against stdlib
packages-with-error-message:
- io/ioutil: 'use "io" or "os" packages instead'
- github.com/golang/protobuf: 'use "google.golang.org/protobuf"'
- github.com/hashicorp/go-uuid: 'use "github.com/google/uuid" instead'
- github.com/pborman/uuid: 'use "github.com/google/uuid" instead'
- github.com/siddontang/go-log/log: 'use "github.com/sirupsen/logrus" instead'
- github.com/siddontang/go/log: 'use "github.com/sirupsen/logrus" instead'
- go.uber.org/atomic: 'use "sync/atomic" instead'
misspell:
locale: US
gci:
sections:
- standard # Standard section: captures all standard packages.
- default # Default section: contains all imports that could not be matched to another section type.
- prefix(github.com/gravitational/teleport) # Custom section: groups all imports with the specified Prefix.
skip-generated: true # Skip generated files.
custom-order: true # Required for "sections" to take effect.
nolintlint:
allow-unused: true # Enabled because of conditional builds / build tags.
require-explanation: true
require-specific: true
output:
uniq-by-line: false
run:
go: '1.19'
skip-dirs:
- (^|/)node_modules/
- ^api/gen/
- ^docs/
- ^gen/
- ^rfd/
- ^web/
skip-dirs-use-default: false
timeout: 5m