'Disable field name description in vscode [duplicate]

I currently don't how was this enabled, but every time I have a file open in the editor with a function that requires some parameters, it shows their name at the left. E.g., in this picture it's showing "value:". I want to disable this so it doesn't show that anymore.

parameter hints



Solution 1:[1]

You have two ways where you can disable this default option

  1. Settings panel - affects all projects that uses vs code:
  • Press f1
  • Type Preferences: Open user settings
  • Search for inlay Hints
  • Finally, disable the inlay Hints option inlayhintsoption
  1. If you want to disable this setting just for an specific vs workspace, open your workspace settings.json file and paste this inside:

"editor.inlayHints.enabled": false

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Jose Castelli