加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.pylintrc 545 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dylan Araps 提交于 2018-10-17 15:20 . general: fix lint
[BASIC]
good-names=i,j,k,n,x,y,fg,bg,r,g,b,i3,r1,r2,r3,g1,g2,g3,b1,b2,b3,h,s,v,l
[MESSAGES CONTROL]
# inconsistent-return-statements:
# Disabled as it's a false-positive and a bug in pylint.
# too-many-branches:
# Disabled as it's a non-issue and only occurs in the
# process_args() function.
# too-many-statements:
# Disabled as it's a non-issue and only occurs in the
# process_args() function.
disable=inconsistent-return-statements,too-many-branches,too-many-statements,too-many-return-statements
[SIMILARITIES]
ignore-imports=y
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化