Open source omnivore
This commit is contained in:
11
apple/BuildTools/.swiftlint.yml
Normal file
11
apple/BuildTools/.swiftlint.yml
Normal file
@ -0,0 +1,11 @@
|
||||
excluded:
|
||||
- build
|
||||
- .build
|
||||
- vendor
|
||||
- docs
|
||||
- .bundle
|
||||
- BuildTools
|
||||
|
||||
identifier_name:
|
||||
excluded:
|
||||
- id
|
||||
1
apple/BuildTools/Empty.swift
Normal file
1
apple/BuildTools/Empty.swift
Normal file
@ -0,0 +1 @@
|
||||
// Empty
|
||||
88
apple/BuildTools/Package.resolved
Normal file
88
apple/BuildTools/Package.resolved
Normal file
@ -0,0 +1,88 @@
|
||||
{
|
||||
"object": {
|
||||
"pins": [
|
||||
{
|
||||
"package": "Files",
|
||||
"repositoryURL": "https://github.com/JohnSundell/Files",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "d273b5b7025d386feef79ef6bad7de762e106eaf",
|
||||
"version": "4.2.0"
|
||||
}
|
||||
},
|
||||
{
|
||||
"package": "SourceKitten",
|
||||
"repositoryURL": "https://github.com/jpsim/SourceKitten.git",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "7f4be006fe73211b0fd9666c73dc2f2303ffa756",
|
||||
"version": "0.31.0"
|
||||
}
|
||||
},
|
||||
{
|
||||
"package": "swift-argument-parser",
|
||||
"repositoryURL": "https://github.com/apple/swift-argument-parser",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "9564d61b08a5335ae0a36f789a7d71493eacadfc",
|
||||
"version": "0.3.2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"package": "swift-graphql",
|
||||
"repositoryURL": "https://github.com/maticzav/swift-graphql",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "c3dee58c57543db473b2d5fd76871e282adedc9d",
|
||||
"version": "2.2.1"
|
||||
}
|
||||
},
|
||||
{
|
||||
"package": "SwiftFormat",
|
||||
"repositoryURL": "https://github.com/nicklockwood/SwiftFormat",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "a9bdfd2548ebe518a693a5c6341d27c42b7e7a0a",
|
||||
"version": "0.48.11"
|
||||
}
|
||||
},
|
||||
{
|
||||
"package": "SwiftLint",
|
||||
"repositoryURL": "https://github.com/realm/SwiftLint",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "e820e750b08bd67bc9d98f4817868e9bc3d5d865",
|
||||
"version": "0.44.0"
|
||||
}
|
||||
},
|
||||
{
|
||||
"package": "SwiftyTextTable",
|
||||
"repositoryURL": "https://github.com/scottrhoyt/SwiftyTextTable.git",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "c6df6cf533d120716bff38f8ff9885e1ce2a4ac3",
|
||||
"version": "0.9.0"
|
||||
}
|
||||
},
|
||||
{
|
||||
"package": "SWXMLHash",
|
||||
"repositoryURL": "https://github.com/drmohundro/SWXMLHash.git",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "9183170d20857753d4f331b0ca63f73c60764bf3",
|
||||
"version": "5.0.2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"package": "Yams",
|
||||
"repositoryURL": "https://github.com/jpsim/Yams.git",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "9ff1cc9327586db4e0c8f46f064b6a82ec1566fa",
|
||||
"version": "4.0.6"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
13
apple/BuildTools/Package.swift
Normal file
13
apple/BuildTools/Package.swift
Normal file
@ -0,0 +1,13 @@
|
||||
// swift-tools-version:5.5
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "BuildTools",
|
||||
platforms: [.macOS(.v10_11)],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.48.11"),
|
||||
.package(url: "https://github.com/realm/SwiftLint", from: "0.44.0"),
|
||||
.package(url: "https://github.com/maticzav/swift-graphql", from: "2.2.1")
|
||||
],
|
||||
targets: [.target(name: "BuildTools", path: "")]
|
||||
)
|
||||
Reference in New Issue
Block a user