Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 476 Bytes

Imports.md

File metadata and controls

23 lines (20 loc) · 476 Bytes

Imports

How do we use them?

Sort imports by system frameworks, followed by third party, and then our own frameworks.

Key Considerations

  • @testable imports should fall below all other imports.
  • There should not be empty lines between imports.

Code Example

import UIKit
import MobileCoreServices
import AVFoundation
import Alamofire

Test Target Example

import XCTest
import CoreData
import Alamofire
@testable import Scorecard