0

After installing Rider 2020.1, such hints as shown in the screenshot appeared. There are many +1 in grey showing up after different lines of code.

How do I disable them?

enter image description here

Pang
  • 9,564
  • 146
  • 81
  • 122
Andrew
  • 261
  • 3
  • 16

1 Answers1

1

I was able to reproduce your "+1". It seems to be the plugin CognitiveComplexity giving you that number. It's a counter which helps you on determining the complexity of the code you're writing. Pretty cool plugin I didn't know it. Disabling it will make the numbers disappear. I don't think you can let it enabled and avoid seeing numbers: it's the way it works to show you complexity cost.

To disable or enable plugins, go to Settings > Plugins, and then deselect CognitiveComplexity.

Pang
  • 9,564
  • 146
  • 81
  • 122
Alessandro R
  • 525
  • 7
  • 16