Suppose my project has an org.abc package with several Scala files inside. All Scala files contain the same import statements, for example. import org.x._ , import org.y._ , import org.z._
I do not like the repetition. Is it possible to move all these import statements to a single file?
source share