-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Closed
Labels
Domain: FormatterThe issue relates to the built-in formatterThe issue relates to the built-in formatter
Description
TypeScript Version: 2.2.1
Code
Format the following code snippet using VS Code or typescript-formatter:
someVar
.chain(
'arg1',
'arg2',
)
.chain(
3,
4,
);Expected behavior:
someVar
.chain(
'arg1',
'arg2',
)
.chain(
3,
4,
);Actual behavior:
someVar
.chain(
'arg1',
'arg2',
)
.chain(
3,
4,
);This is a common occurrence with fluent APIs (test frameworks, ORMs, etc) and tslint rules requiring trailing comma.
aluanhaddad, lpaladin and bgoscinski
Metadata
Metadata
Assignees
Labels
Domain: FormatterThe issue relates to the built-in formatterThe issue relates to the built-in formatter