1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/common/ruff-format.md
Lena 6871fd11e9
ruff, ruff-{check,format}: add page (#12377)
* ruff-format: add page

* ruff-check: add page

* ruff: add page

---------

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
2024-02-27 19:43:53 +05:30

17 lines
577 B
Markdown

# ruff format
> An extremely fast Python code formatter.
> If no files or directories are specified, the current working directory is used by default.
> More information: <https://docs.astral.sh/ruff/formatter>.
- Format given files or directories in-place:
`ruff format {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
- Print which files would have been modified and return a non-zero exit code if there are files to reformat, and zero otherwise:
`ruff format --check`
- Print what changes would be made without modifying the files:
`ruff format --diff`