Domain: JSDocHelp WantedSuggestionVS Code Tracked
Repository metrics
- Stars
- (48,455 stars)
- PR merge metrics
- (Avg merge 6d 17h) (9 merged PRs in 30d)
Description
Formatting:
/**
* @param { Object } bar
*/
function foo(bar) { }
Should result in:
/**
* @param {Object} bar
*/
function foo(bar) { }
Reported originally in https://github.com/Microsoft/TypeScript/issues/11456