Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Jedi linting for Python in Visual Studio Code

I have set my linter for Python to Pylint, but I still get error messages from Jedi. I even went to settings.json and added the line "python.linting.jediEnabled": false, but the line, though present, is greyed out. What more can I do?

like image 839
Lyndon Gingerich Avatar asked Mar 01 '23 16:03

Lyndon Gingerich


1 Answers

Go to settings.json and add the line "python.languageServer": "None". Then restart VSCode.

like image 64
Sourya Dey Avatar answered Mar 16 '23 02:03

Sourya Dey