Brett Zamir

Results 881 comments of Brett Zamir

FWIW, I see there is https://www.npmjs.com/package/pratt-parser Btw, also regarding the project future, until such time as you may move to such a parser, are you still accepting PRs here? I'd...

Excellent! I'd love to be able to use such an engine in `eslint-plugin-jsdoc` so that we can be compatible with jsdoc (or have a mode that is compatible), as well...

Then there might be the issue of contenteditable textarea's (or contenteditable elements of any kind) which could reasonably allow the element wrapping...

Has this been integrated already? Can this be closed?

@pfrazee : There are so many desirable ways in which the core browser can be desirably extended beyond injections and intents. Whether it is having the URL bar showing domain...

Thanks for your reply... I hope I didn't sound too strident, but I was wary of the message getting lost... Since some users want power and some want safety, and...

While it is not great DRY, one advantage of the `@property {type} index - Description` approach would be that a named label might be made allowable after the index to...

@brunoenribeiro , @zerkms : VisualStudio is using TypeScript's own extension of JSDoc. JSDoc itself does not appear to support the "tuples" you are describing; see https://github.com/jsdoc/jsdoc/issues/1703 nor do its docs...

Is `&` supported as an operator in jsdoc? I don't see it at https://jsdoc.app/tags-type.html and #1285 was closed. It's quite a fundamental feature though, so would be nice to have...

This is not only of interest for React Hooks but any array destructuring, e.g.: ```js /** * @param {GenericArray} cfg * @param {number} cfg.0 * @param {string} cfg.1 * @returns...