diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c44706f6c..f8fc5d85c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: lint: uses: werf/common-ci/.github/workflows/lint.yml@chore/ci/lint with: - directories: '["backend"]' + directories: '["backend", "bin/configurator"]' cmd: task -p lint:golangci-lint notification: diff --git a/bin/configurator/config.go b/bin/configurator/config.go index 47a06bbd9..5f604148b 100644 --- a/bin/configurator/config.go +++ b/bin/configurator/config.go @@ -189,15 +189,6 @@ type configCombinationTab struct { Params map[string]string `yaml:"params,omitempty"` } -func (c config) mustGetCombinationTree() optionTreeNode { - rootOption, err := c.getCombinationTree() - if err != nil { - panic(err) - } - - return rootOption -} - type optionTreeNode struct { Option string `json:"option"` Values optionTreeNodeValues `json:"values"`