是否有python的lint规则自动检测字符串连接并建议字符串格式?

时间:2017-07-30 20:28:14

标签: python lint pylint flake8

由于使用字符串连接是一种难闻的气味,我想在lint步骤中自动检测出CI管道并向开发人员报告。

例如,检测"The user " + user.name + " is blocked",并建议使用.format方法 - "The user {} is blocked".format(user.name)

我在 pylint flake8 中寻找规则,但没有人试图检测到这种不良做法。

0 个答案:

没有答案