Microsoft/TypeScript

Support formatting JSDoc comments

Open

#11,500 opened on Oct 10, 2016

View on GitHub
 (2 comments) (3 reactions) (0 assignees)TypeScript (48,455 stars) (6,726 forks)batch import
Domain: JSDocHelp WantedSuggestionVS Code Tracked

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

Contributor guide

Support formatting JSDoc comments · Microsoft/TypeScript#11500 | Good First Issue