加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.flake8 646 Bytes
一键复制 编辑 原始数据 按行查看 历史
JS 提交于 2019-09-02 19:26 . [#171 & #172] dsvm tool (#222)
[flake8]
# Intial set of rules
# Feel Free to add any new rule here with description of what it does.
# E203 Whitespace before ':'
# E266 Too many leading '#' for block comment
# E501 Line too long (82 > 79 characters)
# W503 Line break occurred before a binary operator
# F405 '<function>' may be undefined, or defined from star imports
# E402 module level import not at top of file
# E731 do not assign a lambda expression, use a def
# F821 undefined name 'get_ipython' --> from generated python files using nbconvert
# W605 invalid escape sequence '\W'
ignore = E203, E266, E501, W503, F405, E402, E731, F821, W605
max-line-length = 79
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化