From 5b66f2f0b5101a70bae9df51bc7772a93189ba51 Mon Sep 17 00:00:00 2001 From: Mike Lin Date: Sat, 27 Mar 2021 16:06:58 -1000 Subject: [PATCH] miniwdl check: document --suppress and --no-suppress --- docs/check.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/check.rst b/docs/check.rst index 87ddfa15..994ee0ae 100644 --- a/docs/check.rst +++ b/docs/check.rst @@ -74,6 +74,8 @@ Individual warnings can be suppressed by a WDL comment containing ``!WarningName ShellCheck warnings can be suppressed using `that tool's own convention `_. +Warnings may be suppressed globally with a command-line flag such as `--suppress ForwardReference,StringCoercion` (not recommended). On the other hand, the flag `--no-suppress` causes the checker to ignore inline suppression comments and report the warnings anyway. + Pre-commit hook ---------------