Scala

Scala

Made by DeepSource

Usage of wildcard imports SC-C1001

Style
Minor

It is suggested that you do not use wildcards in the import statements. This defeats the entire purpose of properly packing the code into different classes and packages. Rather, import only what you need.

Bad Practice

import scala.collection.immutable._

Recommended

import scala.collection.immutable.{HashSet, HashMap}