-
Notifications
You must be signed in to change notification settings - Fork 14
/
.golangci.yml
82 lines (78 loc) · 1.73 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
# golangci-lint configuration.
# For more information, see:
# https://golangci-lint.run/usage/configuration/.
run:
timeout: 5m
linters:
# Disable all linters except the ones explicitly listed below.
disable-all: true
enable:
- asciicheck
- bodyclose
- depguard
- dogsled
- dupl
- errcheck
- exhaustive
- exportloopref
- goconst
- gocritic
- gocyclo
- godot
- gofumpt
- goheader
- goimports
- revive
- gomodguard
- goprintffuncname
- gosec
- gosimple
- govet
- ineffassign
- misspell
- nakedret
- nestif
- noctx
- prealloc
- rowserrcheck
- staticcheck
- stylecheck
- sqlclosecheck
- typecheck
- unconvert
- unparam
- unused
- whitespace
linters-settings:
exhaustive:
# Switch statements are to be considered exhaustive if a 'default' case is
# present, even if all enum members aren't listed in the switch.
default-signifies-exhaustive: true
govet:
# Enabled checking for shadowed variables.
check-shadowing: true
goimports:
# Put local imports after 3rd-party packages.
local-prefixes: github.com/oasisprotocol/
gosec:
excludes:
# https://github.com/securego/gosec#available-rules
- G402
- G404
depguard:
rules:
main:
files:
- $all
allow:
- $gostd
- github.com/oasisprotocol
- google.golang.org/grpc
- github.com/ethereum/go-ethereum
- github.com/stretchr/testify
- github.com/uptrace/bun
- github.com/gorilla
- github.com/prometheus
- github.com/knadh/koanf
- github.com/rs/cors
- github.com/spf13/cobra