6868 # Allow multiple parallel golangci-lint instances running.
6969 # If false, golangci-lint acquires file lock on start.
7070 # Default: false
71- allow-parallel-runners : false
71+ allow-parallel-runners : true
7272
7373 # Allow multiple golangci-lint instances running, but serialize them around a lock.
7474 # If false, golangci-lint exits with an error if it fails to acquire file lock on start.
7575 # Default: false
7676 allow-serial-runners : true
7777
78- # Print avg and max memory usage of golangci-lint and total time.
79- # Default: false
80- print-resources-usage : true
81-
8278 # Define the Go version limit.
8379 # Mainly related to generics support since go1.18.
8480 # Default: use Go version from the go.mod file, fallback on the env var `GOVERSION`, fallback on 1.17
@@ -2474,7 +2470,7 @@ linters-settings:
24742470
24752471 # Causes an error if a short declaration (:=) cuddles with anything other than
24762472 # another short declaration.
2477- # This logic overrides force-err-cuddling among others.
2473+ # This logic overrides force-err-cuddling among others.allow-serial-runners
24782474 force-short-decl-cuddling : false
24792475
24802476 # The custom section can be used to define linter plugins to be loaded at runtime.
@@ -2491,6 +2487,11 @@ linters-settings:
24912487 # Intended to point to the repo location of the linter.
24922488 # Optional.
24932489 original-url : github.com/golangci/example-linter
2490+ # Plugins settings/configuration.
2491+ # Only work with plugin based on `linterdb.PluginConstructor`.
2492+ # Optional.
2493+ settings :
2494+ foo : bar
24942495
24952496
24962497linters :
0 commit comments