-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.golangci.yml
87 lines (83 loc) · 3.16 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
83
84
85
86
87
# This file configures github.com/golangci/golangci-lint.
run:
timeout: 5m
tests: false
# default is true. Enables skipping of directories:
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$
skip-dirs-use-default: true
skip-dirs:
- light
- cmd/puppeth
- tests
- crypto/bls12381 # todo: lint after test
skip-files:
- core/genesis_alloc.go
- dag/test_models.go
- token/operation/test_utils.go
- cmd/gwat/accountcmd_test.go
- .*test*
- core/state/snapshot/iterator_binary.go # todo: lint after test
- core/blockchain_insert.go # todo: lint after test
- core/state/snapshot/wipe.go # todo: lint after test
linters:
disable-all: true
enable:
- goconst
- goimports
- gosimple
- govet
- ineffassign
- misspell
- unconvert
- typecheck
- unused
- staticcheck
# - bidichk
- durationcheck
- exportloopref
- whitespace
# - structcheck # lots of false positives
# - errcheck #lot of false positives
# - contextcheck
# - errchkjson # lots of false positives
# - errorlint # this check crashes
# - exhaustive # silly check
# - makezero # false positives
# - nilerr # several intentional
linters-settings:
gofmt:
simplify: true
goconst:
min-len: 3 # minimum length of string constant
min-occurrences: 6 # minimum number of occurrences
issues:
exclude-use-default: false
max-issues-per-linter: 0
max-same-issues: 0
exclude-rules:
- path: crypto/bn256/cloudflare/optate.go
linters:
- deadcode
- staticcheck
- path: internal/build/pgp.go
text: 'SA1019: "golang.org/x/crypto/openpgp" is deprecated: this package is unmaintained except for security fixes.'
- path: core/vm/contracts.go
text: 'SA1019: "golang.org/x/crypto/ripemd160" is deprecated: RIPEMD-160 is a legacy hash and should not be used for new applications.'
- path: accounts/usbwallet/trezor.go
text: 'SA1019: "github.com/golang/protobuf/proto" is deprecated: Use the "google.golang.org/protobuf/proto" package instead.'
- path: accounts/usbwallet/trezor/
text: 'SA1019: "github.com/golang/protobuf/proto" is deprecated: Use the "google.golang.org/protobuf/proto" package instead.'
- path: ethstats/ethstats.go
text: 'SA4003: no value of type uint64 is less than 0'
- path: eth/downloader/downloader.go
text: 'field `synchroniseMock` is unused (unused)'
exclude:
- 'SA1019: event.TypeMux is deprecated: use Feed'
- 'SA1019: strings.Title is deprecated'
- 'SA1019: strings.Title has been deprecated since Go 1.18 and an alternative has been available since Go 1.0: The rule Title uses for word boundaries does not handle Unicode punctuation properly. Use golang.org/x/text/cases instead.'
- 'SA1029: should not use built-in type string as key for value'
- 'SA4010: this result of append is never used, except maybe in other appends'
- 'SA1019: package github.com/golang/protobuf/proto is deprecated'
- 'SA1019: package golang.org/x/crypto/openpgp is deprecated'
- 'SA1019: package golang.org/x/crypto/ripemd160'
- 'SA1015: using time.Tick leaks the underlying ticker'