-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Force break conditional when if test breaks #868
Copy link
Copy link
Closed
Labels
locked-due-to-inactivityPlease open a new issue and fill out the template instead of commenting.Please open a new issue and fill out the template instead of commenting.status:needs discussionIssues needing discussion and a decision to be made before action can be takenIssues needing discussion and a decision to be made before action can be taken
Description
if (this.hasPlugin("dynamicImports") && this.lookahead().type === tt.parenLeft) {
}outputs
if (
this.hasPlugin("dynamicImports") && this.lookahead().type === tt.parenLeft
) {
}which is not very good looking. It would look better if it was displayed as
if (
this.hasPlugin("dynamicImports") &&
this.lookahead().type === tt.parenLeft
) {
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
locked-due-to-inactivityPlease open a new issue and fill out the template instead of commenting.Please open a new issue and fill out the template instead of commenting.status:needs discussionIssues needing discussion and a decision to be made before action can be takenIssues needing discussion and a decision to be made before action can be taken