Reports fully qualified imports that can be relative to base package (Settings | Languages & Frameworks | Scala | Base Packages).

Only applicable when the Except for base package option is enabled in Settings | Editor | Code Style | Scala | Imports.

Example:


  package org.example.application
  package ui

  import org.example.application.model.Data

After the quick-fix is applied:


  package org.example.application
  package ui

  import model.Data