You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("--file", action="store", dest="xsd_file_path", help="XSD file to analyze.", required=False)
95
98
parser.add_argument("--folder", action="store", dest="xsd_files_base_folder", help="Folder containing a collection of XSD files to analyze.", required=False)
96
99
parser.add_argument("--strict", action="store_true", dest="use_strict_mode", help=f"Only consider 'enumeration', 'pattern' and 'maxLength <= {STRICT_RESTRICTIONS_MAX_STRING_LENTGTH_ACCEPTED_AS_VALID_RESTRICTION}' as accepted restrictions.", required=False, default=False)
100
+
parser.add_argument("--debug", action="store_true", dest="use_debug_mode", help="Print verbose information during some phases for debugging purpose.", required=False, default=False)
0 commit comments