You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning if code after an empty template body is indented
Under -noindent, warn id code that follows an empty template is
indented more deeply than the template header. Inserting braces
automatically would change meaning in this case.
Example:
```scala
trait A
case class B() extends A // error: Line is indented too far to the right
case object C extends A // error: Line is indented too far to the right
```
0 commit comments