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
causes the ImportNewerWDL errors to not be printed, but the check still fails with a non-zero exit code.
According to the documentation, "Individual warnings can be suppressed by a WDL comment containing !WarningName on the same line or the following line"
This linting hint cannot be added to the same line:
(import.wdl Ln 0 Col 0) unknown WDL version "development # !ImportNewerWDL"; choices: draft-2, 1.0, development, 1.1
and it is ignored if added to the following line like this:
version development
# !ImportNewerWDL
The text was updated successfully, but these errors were encountered:
I have a pipeline where the only errors are coming from
ImportNewerWDL
. Adding--suppress
to the invocation (miniwdl v1.12.1) as follows:causes the
ImportNewerWDL
errors to not be printed, but the check still fails with a non-zero exit code.According to the documentation, "Individual warnings can be suppressed by a WDL comment containing !WarningName on the same line or the following line"
This linting hint cannot be added to the same line:
and it is ignored if added to the following line like this:
The text was updated successfully, but these errors were encountered: