File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ formatters:
7272 sections :
7373 - standard # Standard section: captures all standard packages.
7474 - default # Default section: contains all imports that could not be matched to another section type.
75- - prefix({{REPO-NAME}}) # Custom section: groups all imports with the specified Prefix .
75+ - localmodule # Local module section: contains all local packages. This section is not present unless explicitly enabled .
7676 - blank # Blank section: contains all blank imports. This section is not present unless explicitly enabled.
7777 - dot # Dot section: contains all dot imports. This section is not present unless explicitly enabled.
7878 exclusions :
Original file line number Diff line number Diff line change @@ -16,10 +16,6 @@ ifndef bin_dir
1616$(error bin_dir is not set)
1717endif
1818
19- ifndef repo_name
20- $(error repo_name is not set)
21- endif
22-
2319golangci_lint_override := $(dir $(lastword $(MAKEFILE_LIST ) ) ) /.golangci.override.yaml
2420
2521.PHONY : go-workspace
@@ -119,7 +115,6 @@ generate-golangci-lint-config: | $(NEEDS_GOLANGCI-LINT) $(NEEDS_YQ) $(bin_dir)/s
119115 cp $(golangci_lint_config) $(bin_dir)/scratch/golangci-lint.yaml.tmp
120116 $(YQ) -i 'del(.linters.enable)' $(bin_dir)/scratch/golangci-lint.yaml.tmp
121117 $(YQ) eval-all -i '. as $$item ireduce ({}; . * $$item)' $(bin_dir)/scratch/golangci-lint.yaml.tmp $(golangci_lint_override)
122- $(YQ) -i '(.. | select(tag == "!!str")) |= sub("{{REPO-NAME}}", "$(repo_name)")' $(bin_dir)/scratch/golangci-lint.yaml.tmp
123118 mv $(bin_dir)/scratch/golangci-lint.yaml.tmp $(golangci_lint_config)
124119
125120shared_generate_targets += generate-golangci-lint-config
You can’t perform that action at this time.
0 commit comments