1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 20:17:57 +01:00
tldr/pages/common/pycodestyle.md

25 lines
542 B
Markdown
Raw Normal View History

2017-11-30 16:06:23 +01:00
# pycodestyle
> A tool to check Python code against PEP 8 style conventions.
2019-05-29 15:53:57 +02:00
> More information: <https://pycodestyle.readthedocs.io>.
2017-11-30 16:06:23 +01:00
- Check the style of a single file:
`pycodestyle {{file.py}}`
- Check the style of multiple files:
`pycodestyle {{file1.py}} {{file2.py}} {{file3.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}}`