-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Closed
Labels
CommittedThe team has roadmapped this issueThe team has roadmapped this issueES NextNew featurers for ECMAScript (a.k.a. ESNext)New featurers for ECMAScript (a.k.a. ESNext)FixedA PR has been merged for this issueA PR has been merged for this issueHelp WantedYou can do thisYou can do thisSuggestionAn idea for TypeScriptAn idea for TypeScript
Milestone
Description
https://jeffmo.github.io/es-trailing-function-commas/
This proposal is Stage 3 according to https://github.com/tc39/ecma262, so seems like its at an appropriate stability for TypeScript team to implement it.
This would allow function definitions and calls in the following style:
function foo(
bar: Bar, // Comment about bar
baz: Baz, // Comment about baz
) {
// Implementation...
}
foo(
bar,
baz,
);
- Helps with VCS authorship attribution in case of added/removed parameters
- Consistency with object and array literals
- Lintable (if you don't like the style, can ban it in your codebase with a linter)
- Supported by other languages
In addition to all of the above, I suspect the extra "verbosity" of TypeScript's inline types makes this feature even more attractive in TypeScript than in vanilla JS. I feel this particularly in class constructors, which can also have private
annotations, and possibly a readonly
annotation coming down the pipe.
class Foo {
constructor(
private bar: Bar = new BasicBar(),
private baz: Baz = new BasicBaz(),
) {}
}
zakhenry, Taytay, o-volkov, jocull, korya and 2 moreappsforartists and gasi
Metadata
Metadata
Assignees
Labels
CommittedThe team has roadmapped this issueThe team has roadmapped this issueES NextNew featurers for ECMAScript (a.k.a. ESNext)New featurers for ECMAScript (a.k.a. ESNext)FixedA PR has been merged for this issueA PR has been merged for this issueHelp WantedYou can do thisYou can do thisSuggestionAn idea for TypeScriptAn idea for TypeScript