mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
12 lines
232 B
Swift
12 lines
232 B
Swift
import Foundation
|
|
|
|
public extension URL {
|
|
var filepath: String {
|
|
withUnsafeFileSystemRepresentation { String(cString: $0!) }
|
|
}
|
|
|
|
var isSwiftFile: Bool {
|
|
filepath.isFile && pathExtension == "swift"
|
|
}
|
|
}
|