We're a place where coders share, stay up-to-date and grow their careers.
Is it only me, that I use /** */ everywhere, because of VSCode convenience? (Regardless of single line or multiple lines.)
/** */
@annotation and TODO: might appear as well.
@annotation
TODO:
You might even go for Better Comments.
// is usually generated from Ctrl+/, not because of my typing. (Yeah, that zombie code.)
//
Ctrl+/
For Python, PyCharm already automate docstring generation, but in VSCode, you will need a plugin.
I am missing JSDoc / JavaDoc in Godoc; because VSCode won't autogenerate it for me. (Also, Go folks recommend // rather than /* */.)
/* */
Is it only me, that I use
/** */
everywhere, because of VSCode convenience? (Regardless of single line or multiple lines.)@annotation
andTODO:
might appear as well.You might even go for Better Comments.
//
is usually generated fromCtrl+/
, not because of my typing. (Yeah, that zombie code.)For Python, PyCharm already automate docstring generation, but in VSCode, you will need a plugin.
I am missing JSDoc / JavaDoc in Godoc; because VSCode won't autogenerate it for me. (Also, Go folks recommend
//
rather than/* */
.)