From 125dd7f25c4980f2142413a2be6af77319c275b2 Mon Sep 17 00:00:00 2001 From: Andrew Dassonville Date: Thu, 30 Nov 2017 07:06:23 -0800 Subject: [PATCH] pycodestyle: add page (#1717) --- pages/common/pycodestyle.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/common/pycodestyle.md diff --git a/pages/common/pycodestyle.md b/pages/common/pycodestyle.md new file mode 100644 index 000000000..74477ae15 --- /dev/null +++ b/pages/common/pycodestyle.md @@ -0,0 +1,23 @@ +# pycodestyle + +> A tool to check Python code against PEP 8 style conventions. + +- 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}}`