jw3 commented on a change in pull request #431:
URL: https://github.com/apache/incubator-daffodil/pull/431#discussion_r510178492
##########
File path: daffodil-cli/src/main/scala/org/apache/daffodil/Main.scala
##########
@@ -562,6 +582,12 @@ class CLIConf(arguments: Array[String]) extends
scallop.ScallopConf(arguments)
verify()
}
+object ValidatorPatterns {
+ val NoArgsPattern: Regex = "(.+?)".r.anchored
+ val MultiArgsPattern: Regex = "(.+?)=(.+?=.+[,]?)+".r.anchored
Review comment:
Supporting typesafe config allows us to avoid rolling our own multi-arg
support here which would get complicated and opinionated in favor of a more
standard approach (env and .conf files).
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]