Home > Software design >  VScode Jedi linting
VScode Jedi linting

Time:10-04

I would like to stop jedi linting in vscode not by disabling the language server like in this post Disable Jedi linting for Python in Visual Studio Code, if i do this most of the features of that server are gone, like knowing which function you are in, and going to a specific function, and seeing the definition of the function when hover.

I just want the linting to stop while i am typing, or disabling the linting, but with all the other features available. How can I do that?

I am on linux, vscode from the AUR.

CodePudding user response:

Have you tried to put in $HOME/.config/Code/User/settings.json ?

{
    "python.jediEnabled": false
}
  • Related