├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.resolved ├── Package.swift ├── Plugins └── SafeURLPlugin │ └── plugin.swift ├── README.md ├── Sources ├── SafeURL │ └── SafeURL.swift ├── SafeURLLintExecutable │ └── main.swift └── SafeURLLintFramework │ ├── SafeURLLintFramework.swift │ ├── SourceKittenDictionary.swift │ └── SwiftExpressionKind.swift └── Tests └── SafeURLTests └── SafeURLTests.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Package.swift -------------------------------------------------------------------------------- /Plugins/SafeURLPlugin/plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Plugins/SafeURLPlugin/plugin.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SafeURL/SafeURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Sources/SafeURL/SafeURL.swift -------------------------------------------------------------------------------- /Sources/SafeURLLintExecutable/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Sources/SafeURLLintExecutable/main.swift -------------------------------------------------------------------------------- /Sources/SafeURLLintFramework/SafeURLLintFramework.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Sources/SafeURLLintFramework/SafeURLLintFramework.swift -------------------------------------------------------------------------------- /Sources/SafeURLLintFramework/SourceKittenDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Sources/SafeURLLintFramework/SourceKittenDictionary.swift -------------------------------------------------------------------------------- /Sources/SafeURLLintFramework/SwiftExpressionKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Sources/SafeURLLintFramework/SwiftExpressionKind.swift -------------------------------------------------------------------------------- /Tests/SafeURLTests/SafeURLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhonatn/SwiftSafeURL/HEAD/Tests/SafeURLTests/SafeURLTests.swift --------------------------------------------------------------------------------