收到 pylint 警告:“未找到配置文件,使用默认配置”
$ pylint --reports=n main.py
输出:
No config file found, using default configuration
$ pylint --reports=n main.py
Output:
No config file found, using default configuration
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的主目录中没有
.pylintrc
文件,或者您未指定,您将收到“未找到配置文件,使用默认配置
”警告pylint 参数--rcfile=/path/to/pylintrc
。要抑制该消息,请在 *nix 上:
You will get the "
No config file found, using default configuration
" warning if you do not have a.pylintrc
file in your home directory, or if you don't specify the pylint argument--rcfile=/path/to/pylintrc
.To suppress the message, on *nix:
找到了 pylintrc 并使用它,有效。将其发布在这里,以防有人需要。您可以修改它以适合您的项目。
found a pylintrc and using it, works. Posting it here in case anyone needs it. You can Modify it to suit your project.