@@ -279,23 +279,11 @@ linters-settings:
279
279
# Default: false
280
280
check-blank : true
281
281
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
-
288
282
# To disable the errcheck built-in exclude list.
289
283
# See `-excludeonly` option in https://github.com/kisielk/errcheck#excluding-functions for details.
290
284
# Default: false
291
285
disable-default-exclusions : true
292
286
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
-
299
287
# List of functions to exclude from checking, where each entry is a single function to exclude.
300
288
# See https://github.com/kisielk/errcheck#excluding-functions for details.
301
289
exclude-functions :
@@ -431,9 +419,6 @@ linters-settings:
431
419
ignore-comments : true
432
420
433
421
gci :
434
- # DEPRECATED: use `sections` and `prefix(github.com/org/project)` instead.
435
- local-prefixes : github.com/org/project
436
-
437
422
# Section configuration to compare against.
438
423
# Section names are case-insensitive and may contain parameters in ().
439
424
# The default order of sections is `standard > default > custom > blank > dot > alias > localmodule`,
@@ -637,9 +622,6 @@ linters-settings:
637
622
# The option is passed to the ruleguard 'debug-group' argument.
638
623
# Default: ""
639
624
debug : ' emptyDecl'
640
- # Deprecated, use 'failOn' param.
641
- # If set to true, identical to failOn='all', otherwise failOn=''
642
- failOnError : false
643
625
# Determines the behavior when an error occurs while parsing ruleguard files.
644
626
# If flag is not set, log error and skip rule files that contain an error.
645
627
# If flag is set, the value must be a comma-separated list of error conditions.
@@ -724,9 +706,6 @@ linters-settings:
724
706
replacement : ' a[b:]'
725
707
726
708
gofumpt :
727
- # Deprecated: use the global `run.go` instead.
728
- lang-version : " 1.17"
729
-
730
709
# Module path which contains the source code being formatted.
731
710
# Default: ""
732
711
module-path : github.com/org/project
@@ -830,8 +809,6 @@ linters-settings:
830
809
local_replace_directives : false
831
810
832
811
gosimple :
833
- # Deprecated: use the global `run.go` instead.
834
- go : " 1.15"
835
812
# Sxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
836
813
# Default: ["*"]
837
814
checks : [ "all" ]
@@ -2059,15 +2036,11 @@ linters-settings:
2059
2036
extra-start-span-signatures :
2060
2037
- " github.com/user/repo/telemetry/trace.Start:opentelemetry"
2061
2038
staticcheck :
2062
- # Deprecated: use the global `run.go` instead.
2063
- go : " 1.15"
2064
2039
# SAxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
2065
2040
# Default: ["*"]
2066
2041
checks : [ "all" ]
2067
2042
2068
2043
stylecheck :
2069
- # Deprecated: use the global `run.go` instead.
2070
- go : " 1.15"
2071
2044
# STxxxx checks in https://staticcheck.io/docs/configuration/options/#checks
2072
2045
# Default: ["*"]
2073
2046
checks : [ "all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022" ]
@@ -2291,9 +2264,6 @@ linters-settings:
2291
2264
# Suggest the use of rpc.DefaultXXPath.
2292
2265
# Default: false
2293
2266
default-rpc-path : true
2294
- # DEPRECATED Suggest the use of os.DevNull.
2295
- # Default: false
2296
- os-dev-null : true
2297
2267
# Suggest the use of sql.LevelXX.String().
2298
2268
# Default: false
2299
2269
sql-isolation-level : true
@@ -2303,9 +2273,6 @@ linters-settings:
2303
2273
# Suggest the use of constant.Kind.String().
2304
2274
# Default: false
2305
2275
constant-kind : true
2306
- # DEPRECATED Suggest the use of syslog.Priority.
2307
- # Default: false
2308
- syslog-priority : true
2309
2276
2310
2277
unconvert :
2311
2278
# Remove conversions that force intermediate rounding.
0 commit comments