mirror of
https://github.com/ypresto/SwiftLintXcode.git
synced 2026-03-25 08:55:51 +00:00
19 lines
No EOL
466 B
Swift
19 lines
No EOL
466 B
Swift
//
|
|
// NSObject_Extension.swift
|
|
//
|
|
// Created by yuya.tanaka on 2016/04/04.
|
|
// Copyright (c) 2016 Yuya Tanaka. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension NSObject {
|
|
class func pluginDidLoad(bundle: NSBundle) {
|
|
let appName = NSBundle.mainBundle().infoDictionary?["CFBundleName"] as? NSString
|
|
if appName == "Xcode" {
|
|
if sharedPlugin == nil {
|
|
sharedPlugin = SwiftLintXcode(bundle: bundle)
|
|
}
|
|
}
|
|
}
|
|
} |