We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9247e50 commit a0e86f4Copy full SHA for a0e86f4
cmd/configsetup/tool_creators.go
@@ -141,10 +141,6 @@ func (s *semgrepConfigCreator) GetToolName() string { return "Semgrep" }
141
type lizardConfigCreator struct{}
142
143
func (l *lizardConfigCreator) CreateConfig(toolsConfigDir string, patterns []domain.PatternConfiguration) error {
144
- // patternDefinitions := make([]domain.PatternDefinition, len(patterns))
145
- // for i, pattern := range patterns {
146
- // patternDefinitions[i] = pattern.PatternDefinition
147
- // }
148
err := lizard.CreateLizardConfig(toolsConfigDir, patterns)
149
if err != nil {
150
return fmt.Errorf("failed to create Lizard configuration: %w", err)
0 commit comments