From 4dddc03f1798f8f2bbb5598aba41c18025ce05b0 Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Fri, 15 Dec 2023 14:13:22 +0100 Subject: [PATCH] disable xsd linting default --- planemo/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planemo/options.py b/planemo/options.py index 03f5eb3c1..b64d9c4e3 100644 --- a/planemo/options.py +++ b/planemo/options.py @@ -1352,7 +1352,7 @@ def shed_fail_fast_option(): def lint_xsd_option(): return planemo_option( - "--xsd/--no_xsd", is_flag=True, default=True, help=("Include tool XSD validation in linting process.") + "--xsd/--no_xsd", is_flag=True, default=False, help=("Include tool XSD validation in linting process.") )