2025-03-14 21:59:59 -06:00
|
|
|
# pycodestyle
|
|
|
|
|
|
|
|
|
|
> Check Python code against PEP 8 style conventions.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://pycodestyle.pycqa.org/en/latest/intro.html#example-usage-and-output>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 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}}`
|