加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.flake8 392 Bytes
一键复制 编辑 原始数据 按行查看 历史
Daniel Kutik 提交于 2023-08-15 13:23 . flake8: exclude venv and .tox folder
[flake8]
max-line-length = 80
per-file-ignores =
# E501: line too long
tests/test_git_superproject.py: E501
extend-ignore =
# E203: Whitespace before ':'
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
# E402: Module level import not at top of file
E402,
# E731: do not assign a lambda expression, use a def
E731,
exclude =
venv,
.tox,
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化