2017-11-30 15:06:23 +00:00
|
|
|
# pycodestyle
|
|
|
|
|
2024-02-14 20:25:13 +00:00
|
|
|
> Check Python code against PEP 8 style conventions.
|
2019-05-29 14:53:57 +01:00
|
|
|
> More information: <https://pycodestyle.readthedocs.io>.
|
2017-11-30 15:06:23 +00:00
|
|
|
|
|
|
|
- Check the style of a single file:
|
|
|
|
|
|
|
|
`pycodestyle {{file.py}}`
|
|
|
|
|
|
|
|
- Check the style of multiple files:
|
|
|
|
|
2024-01-31 03:55:19 +00:00
|
|
|
`pycodestyle {{file1.py file2.py ...}}`
|
2017-11-30 15:06:23 +00:00
|
|
|
|
|
|
|
- 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}}`
|