What is the proper/canonical formatting of long JSDoc lines?
问题 All of the official JSDoc examples have naively simple documentation strings, like the following: /** * @param {string} author - The author of the book. */ The problem is, in real-life documentation you often have longer documentation strings: /** * @param {string} author - The author of the book, presumably some person who writes well */ But since most companies (for legitimate readability reasons) have line length limits, the above often isn't acceptable. However, what I can't figure out is