You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# see https://golangci-lint.run/usage/linters/#revive for supported rules
42
+
rules:
43
+
- name: receiver-naming
44
+
severity: warning
45
+
disabled: false
46
+
exclude:
47
+
- ''
48
+
exclusions:
49
+
generated: lax
50
+
presets:
51
+
- comments
52
+
- common-false-positives
53
+
- legacy
54
+
- std-error-handling
55
+
rules:
56
+
- linters:
57
+
- deadcode
58
+
- staticcheck
59
+
path: crypto/bn256/cloudflare/optate.go
60
+
- linters:
61
+
- revive
62
+
path: crypto/bn256/
63
+
- path: cmd/utils/flags.go
64
+
text: "SA1019: cfg.TxLookupLimit is deprecated: use 'TransactionHistory' instead."
65
+
- path: cmd/utils/flags.go
66
+
text: "SA1019: ethconfig.Defaults.TxLookupLimit is deprecated: use 'TransactionHistory' instead."
67
+
- path: internal/build/pgp.go
68
+
text: 'SA1019: "golang.org/x/crypto/openpgp" is deprecated: this package is unmaintained except for security fixes.'
69
+
- path: core/vm/contracts.go
70
+
text: 'SA1019: "golang.org/x/crypto/ripemd160" is deprecated: RIPEMD-160 is a legacy hash and should not be used for new applications.'
71
+
- path: (.+)\.go$
72
+
text: 'SA1019: event.TypeMux is deprecated: use Feed'
73
+
- path: (.+)\.go$
74
+
text: 'SA1019: strings.Title is deprecated'
75
+
- path: (.+)\.go$
76
+
text: '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.'
77
+
- path: (.+)\.go$
78
+
text: 'SA1029: should not use built-in type string as key for value'
0 commit comments