I would like to leave brief comments as short as possible, since my experience is that comments over 3 or 4 lines tend to obscure, creating a lot of unnecessary “read manual lines”.
I need the legacy to adhere to a jsdoc-compatible format for documenting code. This requires that many obvious things be declared explicitly if they need to be documented correctly. Almost every tag can fall into this category. Even those that don’t do this are often useless to a working developer.
My vision is to have a quick digest inside the code itself, which the developers will actually read, but link to a separate file (or even a comment dump in the same file, separate from where the developers will work) for additional marking, for example:
function example(argument) { stuff;}
...lots more code...
Another tool or plugin would be acceptable, I really only followed the syntax. Another alternative would be a tool with some really good implicit documentation creation.
source
share