1

I updated my VS2019 to the latest 16.11.3 version and these horizontal dots showed up and I have no clue how to disable them. After some searching I found multiple solutions that did not help:

  • Edit -> Advanced -> View formatting (this is ticked off - otherwise it shows blue dots like the white ones on the picture below)
  • I thought it was my dark mode editor's way of displaying the IDE0055 (fix formatting) error but I did not find the color/font anywhere)
  • I've tried a different skin/color theme but the dots remained there

The silly Visual Studio dots

1 Answers1

0

Bit late for an answer but just stumbled across this. So in case ya still need it...

One way is to disable analyzers. Right click project -> Code Analysis -> uncheck Run on live analysis. https://learn.microsoft.com/en-us/visualstudio/code-quality/disable-code-analysis?view=vs-2022

also How do I disable all Roslyn Code Analyzers? specifically https://stackoverflow.com/a/71678568/5679683

Or just disable that one if you like the rest by hovering on the ...'s and clicking the light bulb -> suppress or configure -> (whatever your preference)

dubh
  • 1
  • 1