Screenshot demonstrating the issue
I have two errors in this file, and both are showing up in the Problems panel. All good.
There is a warning too, however, on line 8. It’s a warning about the member dummy implicitly having an "any" type, and I notice it’s not showing up in the Problems panel.
Why is that, and how can I make sure things like this show up in the panel?
I checked the filters for the Problems panel, thinking that maybe the warning was being filtered. The Errors, Warnings, and Infos checkboxes are all enabled though, so that’s not the issue.
Here’s a smaller repro:
class Foo {
bar; // <- three-dot underline here under the "b" of "bar"
}
let baz; // <- three-dot underline here under the "b" of "baz"
>Solution :
That’s because that three-dot underline indicator is not a problem indicator (in the VS Code sense of the word "problem")- it’s a Quick Fix indicator. In VS Code, there are three types of problems: Info (blue underline), Warning (yellow underline), and Error (red underline). VS Code Quick fixes are not VS Code problems, so they don’t show up in VS Code’s problems panel.