1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 20:02:09 +02:00
tldr/pages/common/black.md
Francesco Franchina e1ef02a1fd black: making the description more consistent with other commands
Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
2021-10-27 19:53:22 +01:00

803 B

black

A Python auto code formatter. More information: https://github.com/psf/black.

  • Auto-format a file or entire directory:

black {{path/to/file_or_directory}}

  • Format the code passed in as a string:

black -c "{{code}}"

  • Output the changes that would be applied for each file:

black --diff {{path/to/file_or_directory}}

  • Perform a dry run (print what would be done without actually doing it):

black --check {{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}}