Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vscode "python.jediEnabled": false, showing as Unknown Configuration Setting

this is the settings.json file code

{
    "python.autoComplete.addBrackets": true,
    "python.linting.enabled": true,
    "python.pythonPath": "C:\\Program Files\\Python37\\python.exe",
    "python.jediEnabled": false,
    "python.languageServer": "Microsoft"
}

in this "python.jediEnabled": false, showing error that Unknown Configuration Setting pleaase give the solution

like image 664
Aman Vaswani Avatar asked Jun 19 '20 12:06

Aman Vaswani


1 Answers

With vscode-python's release on June 16th 2020 they removed the python.jediEnabled setting in favor for the python.languageServer setting. From the changelog:

Removed python.jediEnabled setting in favor of python.languageServer. Instead of "python.jediEnabled": true please use "python.languageServer": "Jedi". (#7010)

like image 86
HaaLeo Avatar answered Nov 19 '22 16:11

HaaLeo