注:所有命令均在git bash中执行,针对文件file.py,如果不处于该文件目录下,
需要输入该文件的绝对路径或相对路径。
1、展示所有错误
pycodestyle file.py
2、展示单行错误
pycodestyle --first file.py
3、通过源码展示所有错误
pycodestyle --show-source --show-pep8 file.py
4、展示不同类别错误出现频率:
pycodestyle --statistics -qq file.py