mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
black: add page (#3506)
This commit is contained in:
parent
8b87e5f828
commit
eb8015a192
1 changed files with 24 additions and 0 deletions
24
pages/common/black.md
Normal file
24
pages/common/black.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# 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 {{path/to/file_or_directory}}`
|
||||||
|
|
||||||
|
- Output a diff for each file on stdout:
|
||||||
|
|
||||||
|
`black --diff {{path/to/file_or_directory}}`
|
||||||
|
|
||||||
|
- Return the status without writing the files back:
|
||||||
|
|
||||||
|
`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}}`
|
Loading…
Add table
Reference in a new issue