File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 12
12
13
13
- Add linting for ifEmpty(null) ([ #3411 ] ( https://github.com/nf-core/tools/pull/3411 ) )
14
14
- 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 ) )
16
16
- 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 ) )
17
18
18
19
### Modules
19
20
Original file line number Diff line number Diff line change @@ -599,7 +599,7 @@ def run_linting(
599
599
lint_obj ._load_lint_config ()
600
600
lint_obj .load_pipeline_config ()
601
601
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 :
603
603
module_lint_obj = None
604
604
subworkflow_lint_obj = None
605
605
else :
You can’t perform that action at this time.
0 commit comments