Implemented the SemanticVersionValidationRule type in the library target.

This commit is contained in:
2025-10-13 00:41:29 +02:00
parent c324affad1
commit 28e3c68ce1
5 changed files with 123 additions and 1 deletions
@@ -74,5 +74,4 @@ private extension CamelCaseValidationRule {
private extension String.Pattern {
/// A regular expression pattern that represents camel-cased inputs.
static let camelCase = "([A-Z]([a-z]|[0-9])+)+"
}