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
Copy file name to clipboardexpand all lines: .golangci.yml
+6-11
Original file line number
Diff line number
Diff line change
@@ -16,38 +16,33 @@
16
16
linters:
17
17
enable-all: true
18
18
disable:
19
-
- golint
20
-
- unparam
19
+
- golint # The linter 'golint' is deprecated (since v1.41.0) due to: The repository of the linter has been archived by the owner. Replaced by revive.
21
20
- gochecknoinits
22
21
- gochecknoglobals
23
22
- gomnd
24
-
- nolintlint
25
23
- dupl
26
24
- varnamelen
27
25
- tagliatelle
28
26
- wrapcheck
29
-
- thelper
30
27
- testpackage
31
28
- paralleltest
32
29
- ireturn
33
-
- nlreturn
34
30
- goerr113
35
31
- exhaustivestruct
36
32
- wsl
37
33
- forcetypeassert
38
34
- exhaustive
39
-
- scopelint
40
-
- revive
35
+
- scopelint # The linter 'scopelint' is deprecated (since v1.39.0) due to: The repository of the linter has been deprecated by the owner. Replaced by exportloopref.
41
36
- lll
42
-
- interfacer
37
+
- interfacer# The linter 'interfacer' is deprecated (since v1.38.0) due to: The repository of the linter has been archived by the owner.
43
38
- gosec
44
39
- funlen
45
-
- stylecheck
46
40
- cyclop
47
41
- forbidigo
48
42
- gocognit
49
43
- godox
50
44
- gomoddirectives
51
-
- maligned
45
+
- maligned# The linter 'maligned' is deprecated (since v1.38.0) due to: The repository of the linter has been archived by the owner. Replaced by govet 'fieldalignment'.
"How many seconds to wait before starting the light client proxy. Mostly for test purposes when light client is started at the same time as the pool.")
137
137
138
-
LightCmd.Flags().StringVarP(&tlsCertFile, FlagTlsCertFile, FlagTlsCertFileShort, "", "Path to the TLS certificate file")
139
-
LightCmd.Flags().StringVarP(&tlsKeyFile, FlagTlsKeyFile, FlagTlsKeyFileShort, "", "Path to the TLS key file")
138
+
LightCmd.Flags().StringVarP(&tlsCertFile, FlagTLSCertFile, FlagTLSCertFileShort, "", "Path to the TLS certificate file")
139
+
LightCmd.Flags().StringVarP(&tlsKeyFile, FlagTLSKeyFile, FlagTLSKeyFileShort, "", "Path to the TLS key file")
0 commit comments