Skip to content

Commit

Permalink
drop --xsd option
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed May 8, 2024
1 parent 7ad8fb2 commit cb9d50f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 10 deletions.
1 change: 0 additions & 1 deletion planemo/commands/cmd_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
@options.report_xunit()
@options.fail_level_option()
@options.skip_options()
@options.lint_xsd_option()
@options.recursive_option()
@click.option(
"--urls",
Expand Down
1 change: 0 additions & 1 deletion planemo/commands/cmd_shed_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
@options.click.option(
"--tools", is_flag=True, default=False, help=("Lint tools discovered in the process of linting repositories.")
)
@options.lint_xsd_option()
@options.click.option(
"--ensure_metadata",
is_flag=True,
Expand Down
6 changes: 0 additions & 6 deletions planemo/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -1375,12 +1375,6 @@ def shed_fail_fast_option():
)


def lint_xsd_option():
return planemo_option(
"--xsd/--no_xsd", is_flag=True, default=False, help=("Include tool XSD validation in linting process.")
)


def lint_biocontainers_option():
return planemo_option(
"biocontainer",
Expand Down
2 changes: 0 additions & 2 deletions planemo/tool_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ def lint_tools_on_path(ctx, paths, lint_args, **kwds):

def _lint_extra_modules(**kwds):
linters = []
if kwds.get("xsd", True):
linters.append(planemo.linters.xsd)

if kwds.get("doi", False):
linters.append(planemo.linters.doi)
Expand Down

0 comments on commit cb9d50f

Please sign in to comment.