What is the preferred style of multiple import statements? I didn't find any documentation about this in the style guide. The Scala cheatsheet has this example: > import scala.collection.{Vector, Sequence} Which also seems to be the format IntelliJ prefers but scalariform enforces the following formatting: > import scala.collection.{ Vector, Sequence } I personally prefer the first one.