We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ecc471 commit 8b95391Copy full SHA for 8b95391
.gitignore
@@ -6,3 +6,4 @@
6
/package.json
7
/build/
8
/node_modules/
9
+/.m2/
com.minres.coredsl/src/com/minres/coredsl/validator/Main.xtend
@@ -36,6 +36,9 @@ class Main implements Callable<Integer> {
36
@Option(names=#["-v", "--verbose"], description="verbose output")
37
public Boolean verbose = false;
38
39
+ @Option(names=#["-w", "--strict"], description="verbose output")
40
+ public Boolean strict = false;
41
+
42
def static main(String[] args) {
43
val ret = new CommandLine(new Main()).execute(args);
44
System.exit(ret)
0 commit comments