mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 22:06:03 +02:00

* pages*: improve wording and list placeholders * clamav: fix verb tenses Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * buzzphrase: use k instead of n for number of phrases Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * adguardhome: use non-default instead of different * adguardhome: use configuration instead of config Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * goimports, module: fix list placeholders Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: leave stems and extensions in the same placeholders * pages*: fix list placeholders * pages*: fix list placeholders * pages*: apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * qpdf: enclose n with backticks Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
917 B
917 B
black
A Python auto code formatter. More information: https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html.
- Auto-format a file or entire directory:
black {{path/to/file_or_directory}}
- Format the code passed in as a string:
black -c "{{code}}"
- Show whether a file or a directory would have changes made to them if they were to be formatted:
black --check {{path/to/file_or_directory}}
- Show changes that would be made to a file or a directory without performing them (dry-run):
black --diff {{path/to/file_or_directory}}
- Auto-format a file or directory, emitting exclusively error messages to
stderr
:
black --quiet {{path/to/file_or_directory}}
- Auto-format a file or directory without replacing single quotes with double quotes (adoption helper, avoid using this for new projects):
black --skip-string-normalization {{path/to/file_or_directory}}