1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:42:07 +02:00
tldr/pages/common/pycodestyle.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

24 lines
519 B
Markdown

# pycodestyle
> Check Python code against PEP 8 style conventions.
> More information: <https://pycodestyle.readthedocs.io>.
- Check the style of a single file:
`pycodestyle {{file.py}}`
- Check the style of multiple files:
`pycodestyle {{file1.py file2.py ...}}`
- Show only the first occurrence of an error:
`pycodestyle --first {{file.py}}`
- Show the source code for each error:
`pycodestyle --show-source {{file.py}}`
- Show the specific PEP 8 text for each error:
`pycodestyle --show-pep8 {{file.py}}`