What is this marked number next to the file name in Visual Studio Code?

Viewed 13119

I know the meaning of M as "modified" on the right side of the file name.

But what is that number 4 next to the M ?

Is there a name for these marks?
Any docs of this will helpful!

example image

2 Answers

That is the number of linting errors and warnings currently in the file.

To see the actual errors and their details, open the Problems panel, which by default is at the bottom part of the editor. (If it's not shown, open it by going to the menu View > Problems).

Related