1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

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>
This commit is contained in:
John Spurlock 2023-12-01 10:26:06 -06:00 committed by GitHub
parent e6e708e46c
commit eae82b34d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.",
),
)
})
}