Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/306.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python Pylint在vscode中找不到错误_Python_Visual Studio Code_Pylint - Fatal编程技术网

Python Pylint在vscode中找不到错误

Python Pylint在vscode中找不到错误,python,visual-studio-code,pylint,Python,Visual Studio Code,Pylint,我已将vscode配置为使用pylint 工作区设置: "python.pythonPath": "/home/name/python-venv/machine learning/bin/python3", "python.linting.pylintPath": "/home/name/python-venv/machine-learning/bin/pylint", 这些路径链接到一个虚拟python环境。 当我从命令提示符(ctrl+P)运行Python:run Linting时,out

我已将vscode配置为使用pylint

工作区设置:

"python.pythonPath": "/home/name/python-venv/machine learning/bin/python3",
"python.linting.pylintPath": "/home/name/python-venv/machine-learning/bin/pylint",
这些路径链接到一个虚拟python环境。 当我从命令提示符(ctrl+P)运行Python:run Linting时,output->Python窗口的输出int为:

##########Linting Output - pylint##########
No config file found, using default configuration

-------------------------------------------------------------------
Your code has been rated at 10.00/10 (previous run: 2.31/10, +7.69)
它不会发现文件有任何错误,即使它应该这样做。 当我从终端(有或没有活动虚拟环境)运行此命令时,我得到以下输出:

No config file found, using default configuration
************* Module test
C:  1, 0: Missing module docstring (missing-docstring)
C:  2, 0: Constant name "hello" doesn't conform to UPPER_CASE naming 
style (invalid-name)
C:  3, 0: Constant name "sess" doesn't conform to UPPER_CASE naming 
style (invalid-name)

-------------------------------------------------------------------
Your code has been rated at 2.50/10 (previous run: 10.00/10, -7.50)

有人能告诉我它的行为是这样的吗?

通过使用

pylint --generate-rcfile > ~/.pylintrc
现在一切正常