Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .golangci.next.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4495,7 +4495,7 @@ issues:
# Default: false
whole-files: true

# Fix found issues (if it's supported by the linter).
# Apply the fixes detected by the linters and formatters (if it's supported by the linter).
# Default: false
fix: true

Expand Down
2 changes: 1 addition & 1 deletion jsonschema/golangci.next.jsonschema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5064,7 +5064,7 @@
"examples": ["path/to/patch/file"]
},
"fix": {
"description": "Fix found issues (if it's supported by the linter).",
"description": "Apply the fixes detected by the linters and formatters (if it's supported by the linter).",
"type": "boolean",
"default": false
},
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/flagsets.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,5 @@ func setupIssuesFlagSet(v *viper.Viper, fs *pflag.FlagSet) {
internal.AddFlagAndBind(v, fs, fs.Bool, "whole-files", "issues.whole-files", false,
color.GreenString("Show issues in any part of update files (requires new-from-rev or new-from-patch)"))
internal.AddFlagAndBind(v, fs, fs.Bool, "fix", "issues.fix", false,
color.GreenString("Fix found issues (if it's supported by the linter)"))
color.GreenString("Apply the fixes detected by the linters and formatters (if it's supported by the linter)"))
}
Loading