├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── BuildAndTest.yml │ ├── BuildDocumentation.yml │ └── SwiftLint.yml ├── .gitignore ├── .swiftlint.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── Examples ├── Demo Apps │ └── .gitkeep ├── Playgrounds │ └── .gitkeep └── README.md ├── LICENSE.md ├── Package.swift ├── README.md ├── Scripts └── generate-code-coverage.zsh ├── Sources └── MyLibraryName │ ├── Localization │ └── .gitkeep │ ├── MyLibraryName.docc │ ├── MyLibrary.md │ └── Resources │ │ ├── Images │ │ └── banner-logo.png │ │ └── README.txt │ ├── MyLibraryName.swift │ └── Resources │ └── README.txt └── Tests └── MyLibraryName ├── Cases └── MyLibraryNameTests.swift ├── Resources └── README.md └── Toolbox └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/BuildAndTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.github/workflows/BuildAndTest.yml -------------------------------------------------------------------------------- /.github/workflows/BuildDocumentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.github/workflows/BuildDocumentation.yml -------------------------------------------------------------------------------- /.github/workflows/SwiftLint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.github/workflows/SwiftLint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": false 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Examples/Demo Apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/Playgrounds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- 1 | # Example Applications and Playgrounds 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/generate-code-coverage.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Scripts/generate-code-coverage.zsh -------------------------------------------------------------------------------- /Sources/MyLibraryName/Localization/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/MyLibraryName/MyLibraryName.docc/MyLibrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Sources/MyLibraryName/MyLibraryName.docc/MyLibrary.md -------------------------------------------------------------------------------- /Sources/MyLibraryName/MyLibraryName.docc/Resources/Images/banner-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Sources/MyLibraryName/MyLibraryName.docc/Resources/Images/banner-logo.png -------------------------------------------------------------------------------- /Sources/MyLibraryName/MyLibraryName.docc/Resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Sources/MyLibraryName/MyLibraryName.docc/Resources/README.txt -------------------------------------------------------------------------------- /Sources/MyLibraryName/MyLibraryName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Sources/MyLibraryName/MyLibraryName.swift -------------------------------------------------------------------------------- /Sources/MyLibraryName/Resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Sources/MyLibraryName/Resources/README.txt -------------------------------------------------------------------------------- /Tests/MyLibraryName/Cases/MyLibraryNameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Tests/MyLibraryName/Cases/MyLibraryNameTests.swift -------------------------------------------------------------------------------- /Tests/MyLibraryName/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Tests/MyLibraryName/Resources/README.md -------------------------------------------------------------------------------- /Tests/MyLibraryName/Toolbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CypherPoet/swift-package-template/HEAD/Tests/MyLibraryName/Toolbox/README.md --------------------------------------------------------------------------------