func()

in pkg/comments/config.go [39:44]


func (style *CommentStyle) Validate() error {
	if style.Start == "" || strings.TrimSpace(style.Start) == "" {
		return fmt.Errorf("comment style 'start' cannot be empty")
	}
	return nil
}