【python】静态代码检查

一. pep8 

 1. 官网

  https://www.python.org/dev/peps/pep-0008/

       https://pypi.python.org/pypi/flake8/

 2. 安装

pip install pep8

 3. 使用

  flake8 [file name or directory name]

 

二、pycodestyle

1. 官网

    https://github.com/PyCQA/pycodestyle

    https://www.osgeo.cn/pycodestyle/

2. 安装

pip install pycodestyle 

3. 使用

pycodestyle [file name or directory name]

 

三、Pyflakes

1. 官网

    https://launchpad.net/pyflakes

    https://github.com/PyCQA/pyflakes

2. 安装

pip install pyflakes

3. 用法

pyflakes [ file name or directory name]

 

四、pylint

1. 官网

    https://www.pylint.org/

    https://github.com/PyCQA/pylint

2. 安装

pip install pylint

3. 用法

pylint [options] module_or_package

 

相关编辑器IDE集成, 可以自行配置

 

参考链接:

https://juejin.cn/post/6844903646514118664#heading-5

 

 

    

posted @ 2022-03-02 17:50  代码诠释的世界  阅读(175)  评论(0编辑  收藏  举报