Visual Studio Code - removing pylint

可紊 提交于 2019-12-03 03:06:39
Mahmoud Ayman

open the workspace settings file (select File > Preferences > Settings, then locate Python configuration) and edit this line as

"python.linting.pylintEnabled": false

then save the file.

If you just want to disable pylint then the updated VSCode makes it much more easier.

Just hit CTRL + SHIFT + P > Select linter > Disabled Linter.

Hope this helps future readers.

The question was how to remove python linter, not how to disable it.

In order to remove pylint open Powershell/cmd and type:

pip uninstall pylint
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!