0

I'm on VS Code Version: 1.62.0 with the Language Server version: v2021.11.0.

When I hover with the mouse on a problem, I can't see linter error messages (e.g., flake8 messages are available just in the problem section at the bottom, but not in the popover). I used to see all of them also in the popover before the latest VSCode update. Here is a pic of the problem in action:

enter image description here

My related settings are:

{
    "python.pythonPath": ".venv/bin/python",
    "python.formatting.provider": "black",
    "editor.formatOnSave": true,
    "python.linting.flake8Enabled": true,
    "python.linting.enabled": true,
}

How can I fix it?

floatingpurr
  • 7,749
  • 9
  • 46
  • 106
  • 1
    I am having the same problem, and also with mypy. The pylance error messages show up in the editor popup, but not flake8 or mypy anymore :( – RcoderNY Nov 18 '21 at 09:32
  • It's a bug. Probably, you have just [commented](https://github.com/microsoft/vscode-python/issues/17882#issuecomment-972694565) the related issue. Check out also this one: https://github.com/microsoft/vscode/issues/136711 – floatingpurr Nov 18 '21 at 09:39
  • Looks fixed in 1.63.0: https://github.com/microsoft/vscode-python/issues/17882#issuecomment-972787428 – floatingpurr Nov 18 '21 at 14:53

1 Answers1

2

You can downgrade to an older version of the VSCode. I met the same problem on 1.62.0 after I downgrade to the early version of 1.61.2, the problem was solved.

I had submitted a bug on Github, you can refer to here.

Steven-MSFT
  • 7,438
  • 1
  • 5
  • 13