Skip to content

Commit 66a9130

Browse files
authored
dev: replace tab by space inside CLI help (#4221)
1 parent 57bc603 commit 66a9130

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/commands/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ func initFlagSet(fs *pflag.FlagSet, cfg *config.Config, m *lintersdb.Manager, is
122122
const allowParallelDesc = "Allow multiple parallel golangci-lint instances running. " +
123123
"If false (default) - golangci-lint acquires file lock on start."
124124
fs.BoolVar(&rc.AllowParallelRunners, "allow-parallel-runners", false, wh(allowParallelDesc))
125-
const allowSerialDesc = "Allow multiple golangci-lint instances running, but serialize them around a lock. " +
125+
const allowSerialDesc = "Allow multiple golangci-lint instances running, but serialize them around a lock. " +
126126
"If false (default) - golangci-lint exits with an error if it fails to acquire file lock on start."
127127
fs.BoolVar(&rc.AllowSerialRunners, "allow-serial-runners", false, wh(allowSerialDesc))
128128

0 commit comments

Comments
 (0)