I thought I share which plug-ins I use and can recommend:
(https://www.photools.com/community/index.php?action=dlattach;topic=7111.0;attach=16234;image)
Especially EsLint (JavaScript code analysis and error check) and HTMLHint (same for HTML) are awesome.
Make sure you have the "Problems" panel open in VSCode (View > Problems). If your HTML code or JavaScript code have syntax errors (or errors which can be found by static code analysis) they will reported there. Indispensable.
The Bookmarks plug-in allows you to set bookmarks in your code and then jump between these bookmarks. I use the custom hotkeys <Ctrl>+<F2> to set/remove and <F2> to jump between bookmarks. Makes navigation in source code much faster.
The htmltagwrap wraps the selected text in <tag>. Great for writing lots of HTML code. I use that when creating code examples for the documentation. Great to wrap text in <strong></strong> or <code></code> or whatever.
THANKS, very helpful!