(v string)
| 663 | } |
| 664 | |
| 665 | func InvalidProjectNameErr(v string) error { |
| 666 | return fmt.Errorf( |
| 667 | "invalid project name %q: must consist only of lowercase alphanumeric characters, hyphens, and underscores as well as start with a letter or number", |
| 668 | v, |
| 669 | ) |
| 670 | } |
| 671 | |
| 672 | // projectName determines the canonical name to use for the project considering |
| 673 | // the loader Options as well as `name` fields in Compose YAML fields (which |
no outgoing calls
no test coverage detected
searching dependent graphs…