Skip to content

Commit

Permalink
Merge pull request #1396 from bernt-matthias/topic/shed_lint_skip_fix
Browse files Browse the repository at this point in the history
really skip specified linters
  • Loading branch information
mvdbeek authored Oct 23, 2023
2 parents e7625b6 + d93bd9c commit 913bf29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def build_lint_args(ctx, **kwds):
def setup_lint(ctx, **kwds):
"""Prepare lint_args and lint_ctx to begin linting a target."""
lint_args = kwds.get("lint_args", None) or build_lint_args(ctx, **kwds)
lint_ctx = LintContext(lint_args["level"])
lint_ctx = LintContext(level=lint_args["level"], skip_types=lint_args["skip_types"])
return lint_args, lint_ctx


Expand Down

0 comments on commit 913bf29

Please sign in to comment.