It would be nice if the plugin could insert the new import ... alphabetically. For example we have current import lines:
import CoreGraphics
import Foundation
import UIKit
if we're to add a new import line like import CoreLocation, it would be like this:
import CoreGraphics
import CoreLocation
import Foundation
import UIKit
It would be nice if the plugin could insert the new
import ...alphabetically. For example we have current import lines:import CoreGraphicsimport Foundationimport UIKitif we're to add a new import line like
import CoreLocation, it would be like this:import CoreGraphicsimport CoreLocationimport Foundationimport UIKit