-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy path.golangci.yml
More file actions
77 lines (75 loc) · 1.67 KB
/
.golangci.yml
File metadata and controls
77 lines (75 loc) · 1.67 KB
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
# golangci-lint configuration.
# For more information, see:
# https://golangci-lint.run/usage/configuration/.
version: "2"
run:
timeout: 5m
linters:
# Disable all linters except the ones explicitly listed below.
default: none
enable:
- asciicheck
- bodyclose
- depguard
- dogsled
- dupl
- errcheck
- exhaustive
- goconst
- gocritic
- gocyclo
- godot
- goheader
- revive
- gomodguard
- goprintffuncname
- gosec
- govet
- ineffassign
- misspell
- nakedret
- nestif
- noctx
- prealloc
- rowserrcheck
- staticcheck
- sqlclosecheck
- unconvert
- unparam
- unused
- whitespace
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
gosec:
excludes:
# https://github.com/securego/gosec#available-rules
- G402
- G404
depguard:
rules:
main:
files:
- $all
allow:
- $gostd
- golang.org/x/crypto/sha3
- github.com/oasisprotocol
- github.com/btcsuite/btcd/btcec
- google.golang.org/grpc
- github.com/ethereum/go-ethereum
- github.com/shopspring/decimal
- github.com/golang/snappy
- github.com/stretchr/testify
- gopkg.in/yaml.v3
formatters:
enable:
- gofumpt
- goimports
settings:
goimports:
# Put local imports after 3rd-party packages.
local-prefixes:
- github.com/oasisprotocol/oasis-core