Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

align.inInterpolation=true does not take effect when an end if is present #3124

Closed
Atry opened this issue Feb 18, 2022 · 0 comments · Fixed by #3127
Closed

align.inInterpolation=true does not take effect when an end if is present #3124

Atry opened this issue Feb 18, 2022 · 0 comments · Fixed by #3127

Comments

@Atry
Copy link

Atry commented Feb 18, 2022

This template is a guideline, not a strict requirement.

  • Version: 3.4.2
  • Integration: VSCode
  • Configuration:
runner.dialect = scala3
version = "3.4.2"
maxColumn = 80
align.inInterpolation = true
newlines.inInterpolation = oneline

Steps

Given code like this:

  val s = raw"""${
                   if true
                   then "then"
                   else "else"
                   end if
                 }"""

When I run scalafmt like this:

scalafmt

Problem

Scalafmt formats code like this:

  val s = raw"""${
      if true
      then "then"
      else "else"
      end if
    }"""

Expectation

I would like the formatted output to look like this:

  val s = raw"""${
                   if true
                   then "then"
                   else "else"
                   end if
                 }"""

Workaround

Remove end if

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant