Reports single-expression string templates that can be safely removed.

Example:

  val x = "Hello"
  val y = "$x"

After the quick-fix is applied:

  val x = "Hello"
  val y = x // <== Updated