加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.flake8 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
马瑞祥 提交于 2024-05-16 15:48 . #
[flake8]
exclude = venv,build,__pycache__,__init__.py,examples/*,tests/*
ignore =
# continuation line missing indentation or outdented
E122,
# continuation line over-indented for hanging indent
E126,
# continuation line over-indented for visual indent
E127,
# continuation line under-indented for visual indent
E128,
# continuation line unaligned for hanging indent
E131,
# too many blank lines
E303,
# line too long, fixed by pylint
E501,
# line break before binary operator
W503,
# line break after binary operator
W504,
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化