mirror of
https://github.com/ypresto/SwiftLintXcode.git
synced 2026-03-25 08:55:51 +00:00
19 lines
457 B
Swift
19 lines
457 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: Bundle) {
|
|
let appName = Bundle.main.infoDictionary?["CFBundleName"] as? NSString
|
|
if appName == "Xcode" {
|
|
if sharedPlugin == nil {
|
|
sharedPlugin = SwiftLintXcode(bundle: bundle)
|
|
}
|
|
}
|
|
}
|
|
}
|