标签:规范 工具 xxx class 手动 安装 文件 pip 文件中
flake8:用于检测代码中不符合规范的地方
安装:pip install flake8
手动代码检测:flake8 xxx.py或者文件夹
自动检测代码
# 创建配置文件.flake8
填写[flake8] # 文件中有它就会自动检测代码
配置相关
ignore = E225 # 忽略E225这个规范
except = xxx # 检测时将这些文件排除在外,不进行检测
标签:规范 工具 xxx class 手动 安装 文件 pip 文件中
原文地址:https://www.cnblogs.com/liuweida/p/11769706.html