浏览代码

pycodestyle: add page (#1717)

Andrew Dassonville 7 年之前
父节点
当前提交
125dd7f25c
共有 1 个文件被更改,包括 23 次插入0 次删除
  1. 23 0
      pages/common/pycodestyle.md

+ 23 - 0
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}}`