-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.golangci.yaml
More file actions
41 lines (39 loc) · 815 Bytes
/
.golangci.yaml
File metadata and controls
41 lines (39 loc) · 815 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
#
# Copyright (c) 2021, 2025 Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at
# https://oss.oracle.com/licenses/upl.
#
linters:
enable:
- govet
- ineffassign
- gofmt
- revive
- gosimple
- gosec
- errcheck
- errname
- goconst
- staticcheck
- typecheck
- unused
disable-all: true
fast: true
issues:
exclude:
- stutter
exclude-rules:
- path: "pkg/cmd/formatting.go"
text: "G115"
- path: "pkg/cmd/health.go"
text: "G115"
- path: "pkg/cmd/cluster.go"
text: "G115"
- path: "pkg/cmd/session.go"
text: "G115"
- path: "pkg/cmd/cache.go"
text: "G115"
- path: "pkg/cmd/http_session.go"
text: "G115"
- path: "pkg/cmd/root_test.go"
text: "G115"