收到pylint警告:“未找到配置文件,使用默认配置”
$ pylint --reports=n main.py
输出:
No config file found, using default configuration
回答:
您将获得“ No config file found, using default
configuration”警告,如果你没有一个.pylintrc
文件在你的主目录,或者如果你不指定pylint的说法--rcfile=/path/to/pylintrc
。
要取消显示该消息,请在* nix上:
$ touch ~/.pylintrc
以上是 收到pylint警告:“未找到配置文件,使用默认配置” 的全部内容, 来源链接: utcz.com/qa/402856.html