Skip to content

Commit 8451416

Browse files
authored
Merge pull request #3480 from LouisLeNezet/lint
Fix pipeline linting nf-core component behaviour
2 parents 67146de + 3365067 commit 8451416

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212

1313
- Add linting for ifEmpty(null) ([#3411](https://github.com/nf-core/tools/pull/3411))
1414
- Fix arbitrarily nested params schema linting ([#3443](https://github.com/nf-core/tools/pull/3443))
15-
- fix: linting with comments after the input directive ([#3458](https://github.com/nf-core/tools/pull/3458))
15+
- Fix: linting with comments after the input directive ([#3458](https://github.com/nf-core/tools/pull/3458))
1616
- EDAM ontology fixes ([#3460](https://github.com/nf-core/tools/pull/3460))
17+
- Fix default linting of nf-core components when `nf-core pipelines lint` is ran ([#3480](https://github.com/nf-core/tools/pull/3480))
1718

1819
### Modules
1920

nf_core/pipelines/lint/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ def run_linting(
599599
lint_obj._load_lint_config()
600600
lint_obj.load_pipeline_config()
601601

602-
if lint_obj.lint_config and not lint_obj.lint_config["nfcore_components"]:
602+
if lint_obj.lint_config and lint_obj.lint_config["nfcore_components"] is not None:
603603
module_lint_obj = None
604604
subworkflow_lint_obj = None
605605
else:

0 commit comments

Comments
 (0)