You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most language servers AFAIK allow the usage of a special comment suffix to a line of interest, that disables the linter for that line. It would be helpful to have this feature also available for Nextflow plugin. One example of a warning that I find kind of uninformative in some cases is Variable was declared but not used, as I like assigning all calls to processes and sub-workflows to variables, even if they are the last ones in the workflow to be called. So this:
workflow {
output = doSomeWork()
}
produces a warning.
The text was updated successfully, but these errors were encountered:
Most language servers AFAIK allow the usage of a special comment suffix to a line of interest, that disables the linter for that line. It would be helpful to have this feature also available for Nextflow plugin. One example of a warning that I find kind of uninformative in some cases is
Variable was declared but not used
, as I like assigning all calls to processes and sub-workflows to variables, even if they are the last ones in the workflow to be called. So this:produces a warning.
The text was updated successfully, but these errors were encountered: