File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,10 +70,11 @@ formatters:
7070 enable : [ gci, gofmt ]
7171 settings :
7272 gci :
73+ custom-order : true
7374 sections :
7475 - standard # Standard section: captures all standard packages.
7576 - default # Default section: contains all imports that could not be matched to another section type.
76- - prefix({{REPO-NAME}}) # Custom section: groups all imports with the specified Prefix .
77+ - localmodule # Local module section: contains all local packages. This section is not present unless explicitly enabled .
7778 - blank # Blank section: contains all blank imports. This section is not present unless explicitly enabled.
7879 - dot # Dot section: contains all dot imports. This section is not present unless explicitly enabled.
7980 exclusions :
Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ generate-golangci-lint-config: | $(NEEDS_GOLANGCI-LINT) $(NEEDS_YQ) $(bin_dir)/s
117117 cp $(golangci_lint_config) $(bin_dir)/scratch/golangci-lint.yaml.tmp
118118 $(YQ) -i 'del(.linters.enable)' $(bin_dir)/scratch/golangci-lint.yaml.tmp
119119 $(YQ) eval-all -i '. as $$item ireduce ({}; . * $$item)' $(bin_dir)/scratch/golangci-lint.yaml.tmp $(golangci_lint_override)
120- $(YQ) -i '(.. | select(tag == "!!str")) |= sub("{{REPO-NAME}}", "$(repo_name)")' $(bin_dir)/scratch/golangci-lint.yaml.tmp
121120 mv $(bin_dir)/scratch/golangci-lint.yaml.tmp $(golangci_lint_config)
122121
123122shared_generate_targets += generate-golangci-lint-config
You can’t perform that action at this time.
0 commit comments