@@ -279,23 +279,11 @@ linters-settings:
279279 # Default: false
280280 check-blank : true
281281
282- # DEPRECATED comma-separated list of pairs of the form pkg:regex
283- #
284- # the regex is used to ignore names within pkg. (default "fmt:.*").
285- # see https://github.com/kisielk/errcheck#the-deprecated-method for details
286- ignore : fmt:.*,io/ioutil:^Read.*
287-
288282 # To disable the errcheck built-in exclude list.
289283 # See `-excludeonly` option in https://github.com/kisielk/errcheck#excluding-functions for details.
290284 # Default: false
291285 disable-default-exclusions : true
292286
293- # DEPRECATED use exclude-functions instead.
294- #
295- # Path to a file containing a list of functions to exclude from checking.
296- # See https://github.com/kisielk/errcheck#excluding-functions for details.
297- exclude : /path/to/file.txt
298-
299287 # List of functions to exclude from checking, where each entry is a single function to exclude.
300288 # See https://github.com/kisielk/errcheck#excluding-functions for details.
301289 exclude-functions :
@@ -431,9 +419,6 @@ linters-settings:
431419 ignore-comments : true
432420
433421 gci :
434- # DEPRECATED: use `sections` and `prefix(github.com/org/project)` instead.
435- local-prefixes : github.com/org/project
436-
437422 # Section configuration to compare against.
438423 # Section names are case-insensitive and may contain parameters in ().
439424 # The default order of sections is `standard > default > custom > blank > dot > alias > localmodule`,
@@ -637,9 +622,6 @@ linters-settings:
637622 # The option is passed to the ruleguard 'debug-group' argument.
638623 # Default: ""
639624 debug : ' emptyDecl'
640- # Deprecated, use 'failOn' param.
641- # If set to true, identical to failOn='all', otherwise failOn=''
642- failOnError : false
643625 # Determines the behavior when an error occurs while parsing ruleguard files.
644626 # If flag is not set, log error and skip rule files that contain an error.
645627 # If flag is set, the value must be a comma-separated list of error conditions.
@@ -724,9 +706,6 @@ linters-settings:
724706 replacement : ' a[b:]'
725707
726708 gofumpt :
727- # Deprecated: use the global `run.go` instead.
728- lang-version : " 1.17"
729-
730709 # Module path which contains the source code being formatted.
731710 # Default: ""
732711 module-path : github.com/org/project
@@ -830,8 +809,6 @@ linters-settings:
830809 local_replace_directives : false
831810
832811 gosimple :
833- # Deprecated: use the global `run.go` instead.
834- go : " 1.15"
835812 # Sxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
836813 # Default: ["*"]
837814 checks : [ "all" ]
@@ -2059,15 +2036,11 @@ linters-settings:
20592036 extra-start-span-signatures :
20602037 - " github.com/user/repo/telemetry/trace.Start:opentelemetry"
20612038 staticcheck :
2062- # Deprecated: use the global `run.go` instead.
2063- go : " 1.15"
20642039 # SAxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
20652040 # Default: ["*"]
20662041 checks : [ "all" ]
20672042
20682043 stylecheck :
2069- # Deprecated: use the global `run.go` instead.
2070- go : " 1.15"
20712044 # STxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
20722045 # Default: ["*"]
20732046 checks : [ "all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022" ]
@@ -2291,9 +2264,6 @@ linters-settings:
22912264 # Suggest the use of rpc.DefaultXXPath.
22922265 # Default: false
22932266 default-rpc-path : true
2294- # DEPRECATED Suggest the use of os.DevNull.
2295- # Default: false
2296- os-dev-null : true
22972267 # Suggest the use of sql.LevelXX.String().
22982268 # Default: false
22992269 sql-isolation-level : true
@@ -2303,9 +2273,6 @@ linters-settings:
23032273 # Suggest the use of constant.Kind.String().
23042274 # Default: false
23052275 constant-kind : true
2306- # DEPRECATED Suggest the use of syslog.Priority.
2307- # Default: false
2308- syslog-priority : true
23092276
23102277 unconvert :
23112278 # Remove conversions that force intermediate rounding.
0 commit comments