diff options
author | John Spurlock <47259736+johnspurlock-skymethod@users.noreply.github.com> | 2023-12-01 10:26:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 16:26:06 +0000 |
commit | eae82b34d49166a4adca8f09b96d75a6414f69a8 (patch) | |
tree | f61d09d51e3fac2a43aa6e1e241075a1c2ebd1bd /cli | |
parent | e6e708e46c51f3154a81ed99cd35c3d5569930f9 (diff) |
Update doc for deno fmt `--no-semicolons` arg. (#21414)
Include default, like other bools.
---------
Signed-off-by: John Spurlock <47259736+johnspurlock-skymethod@users.noreply.github.com>
Diffstat (limited to 'cli')
-rw-r--r-- | cli/args/flags.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 6e79df675..e027a72b9 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -1654,7 +1654,9 @@ Ignore formatting a file by adding an ignore comment at the top of the file: .value_parser(value_parser!(bool)) .default_missing_value("true") .require_equals(true) - .help("Don't use semicolons except where necessary."), + .help( + "Don't use semicolons except where necessary. Defaults to false.", + ), ) }) } |