Merge branch 'claude/fix-bugs-and-gaps-01DvJSzruQh49DU6XK5AykQU' (#4)

This commit is contained in:
tnypxl
2025-11-27 10:50:03 -06:00
committed by GitHub
parent 877a7876c0
commit eb3b611864
6 changed files with 68 additions and 129 deletions

View File

@@ -92,6 +92,10 @@ func (c *Config) Validate() error {
return fmt.Errorf("file_extensions or sites must be specified")
}
if c.OutputType != "" && c.OutputType != "single" && c.OutputType != "separate" {
return fmt.Errorf("output_type must be 'single' or 'separate'")
}
if c.RequestsPerSecond != nil && *c.RequestsPerSecond <= 0 {
return fmt.Errorf("requests_per_second must be positive")
}