Skip to content

Commit

Permalink
Merge pull request nf-core#2582 from mashehu/ignore-meta-output
Browse files Browse the repository at this point in the history
don't warn about missing `meta` value in meta.yml
  • Loading branch information
mashehu authored Dec 18, 2023
2 parents 35194b5 + 1713939 commit 58251cd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions nf_core/modules/lint/meta_yml.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,14 @@ def meta_yml(module_lint_object: ComponentLint, module: NFCoreComponent) -> None
module.meta_yml,
)
)
elif output == "meta":
module.passed.append(
(
"meta_output_meta_only",
f"`{output}` is skipped for `meta.yml` outputs",
module.meta_yml,
)
)
else:
module.warned.append(
(
Expand Down

0 comments on commit 58251cd

Please sign in to comment.