imliam / vscode-inline-parameters

An extension for Visual Studio Code that adds inline parameter annotations when calling a function.
https://marketplace.visualstudio.com/items?itemName=liamhammett.inline-parameters
MIT License
197 stars 21 forks source link

Annotations don't work at all #54

Open Dozorengel opened 3 years ago

Dozorengel commented 3 years ago

The extension doesn't work on any of my projects (JS, TS, PHP). I got some errors in the console, they are somehow related to the base extension lannonbr.vscode-js-annotations.

This error I got when I open any of my working projects. image

This error I got when I create a new project and start typing some js code. image

Windows 10 21H1, WSL2 Ubuntu 20.04, VS Code 1.59.1

tdwesten commented 2 years ago

Same problems overhere

FlahDev commented 1 year ago

We don't need this extension anymore, vscode has own support to inlay hints

"editor.inlayHints.enabled": "on",
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,