diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..95c4320 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +/.build +/Packages +/*.xcodeproj +xcuserdata/ diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..706eede --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..f3df8ca --- /dev/null +++ b/Package.swift @@ -0,0 +1,28 @@ +// swift-tools-version:5.1 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "AnyLint", + products: [ + // Products define the executables and libraries produced by a package, and make them visible to other packages. + .library( + name: "AnyLint", + targets: ["AnyLint"]), + ], + dependencies: [ + // Dependencies declare other packages that this package depends on. + // .package(url: /* package url */, from: "1.0.0"), + ], + targets: [ + // Targets are the basic building blocks of a package. A target can define a module or a test suite. + // Targets can depend on other targets in this package, and on products in packages which this package depends on. + .target( + name: "AnyLint", + dependencies: []), + .testTarget( + name: "AnyLintTests", + dependencies: ["AnyLint"]), + ] +) diff --git a/README.md b/README.md new file mode 100644 index 0000000..71f570d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# AnyLint + +A description of this package. diff --git a/Sources/AnyLint/AnyLint.swift b/Sources/AnyLint/AnyLint.swift new file mode 100644 index 0000000..78f37fa --- /dev/null +++ b/Sources/AnyLint/AnyLint.swift @@ -0,0 +1,3 @@ +struct AnyLint { + var text = "Hello, World!" +} diff --git a/Tests/AnyLintTests/AnyLintTests.swift b/Tests/AnyLintTests/AnyLintTests.swift new file mode 100644 index 0000000..5b13bbb --- /dev/null +++ b/Tests/AnyLintTests/AnyLintTests.swift @@ -0,0 +1,15 @@ +import XCTest +@testable import AnyLint + +final class AnyLintTests: XCTestCase { + func testExample() { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct + // results. + XCTAssertEqual(AnyLint().text, "Hello, World!") + } + + static var allTests = [ + ("testExample", testExample), + ] +} diff --git a/Tests/AnyLintTests/XCTestManifests.swift b/Tests/AnyLintTests/XCTestManifests.swift new file mode 100644 index 0000000..8ebc876 --- /dev/null +++ b/Tests/AnyLintTests/XCTestManifests.swift @@ -0,0 +1,9 @@ +import XCTest + +#if !canImport(ObjectiveC) +public func allTests() -> [XCTestCaseEntry] { + return [ + testCase(AnyLintTests.allTests), + ] +} +#endif diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift new file mode 100644 index 0000000..880dd06 --- /dev/null +++ b/Tests/LinuxMain.swift @@ -0,0 +1,7 @@ +import XCTest + +import AnyLintTests + +var tests = [XCTestCaseEntry]() +tests += AnyLintTests.allTests() +XCTMain(tests)