Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

i've just setup default pylint linter in vscode but i do not get for example messages about docstrings. Maybe i missing also some other notifications from linter. https://code.visualstudio.com/docs/languages/python#_linting

Screnshoot from vscode documentation showing linter message

Where can i chose which messages to enable and which to disable? I've tried looking at settings without success.

question from:https://stackoverflow.com/questions/65926135/how-to-make-linter-show-more-messages

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Well, i found solution. Have to add args in Settings > Python ? Linting: Pylint Args https://code.visualstudio.com/docs/python/linting#_default-pylint-rules

For now I enabled all messages

--enable=all

Will experiment later


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...