-
Notifications
You must be signed in to change notification settings - Fork 1
/
.golangci.yml
79 lines (75 loc) · 1.74 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
# 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
- nolintlint
- prealloc
- rowserrcheck
- staticcheck
- stylecheck
- sqlclosecheck
- typecheck
- unconvert
- unparam
- unused
- whitespace
linters-settings:
depguard:
rules:
main:
files:
- $all
allow:
- $gostd
- github.com/oasisprotocol
- github.com/btcsuite/btcd
- github.com/adrg/xdg
- github.com/AlecAivazis/survey/v2
- github.com/ethereum/go-ethereum
- github.com/miguelmota/go-ethereum-hdwallet
- github.com/mitchellh/mapstructure
- github.com/olekukonko/tablewriter
- github.com/spf13/cobra
- github.com/spf13/pflag
- github.com/spf13/viper
- github.com/stretchr/testify
- github.com/tyler-smith/go-bip39
- github.com/zondax/ledger-go
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