├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── 🇨🇦EN Bug Report.md │ ├── 🇨🇦EN Documentation Correction.md │ ├── 🇨🇦EN Feature Request.md │ ├── 🇨🇦EN Question.md │ ├── 🇩🇪DE Dokumentationsberichtigung.md │ ├── 🇩🇪DE Erweiterungswünsch.md │ ├── 🇩🇪DE Fehlermeldung.md │ ├── 🇩🇪DE Frage.md │ ├── 🇬🇧EN Bug Report.md │ ├── 🇬🇧EN Documentation Correction.md │ ├── 🇬🇧EN Feature Request.md │ ├── 🇬🇧EN Question.md │ ├── 🇺🇸EN Bug Report.md │ ├── 🇺🇸EN Documentation Correction.md │ ├── 🇺🇸EN Feature Request.md │ └── 🇺🇸EN Question.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── Amazon Linux.yaml │ ├── Android.yaml │ ├── Documentation Deployment.yaml │ ├── Miscellaneous.yaml │ ├── Swift 5.7 (Amazon Linux).yaml │ ├── Swift 5.7 (Ubuntu).yaml │ ├── Swift 5.7 (macOS).yaml │ ├── Ubuntu.yaml │ ├── Web.yaml │ ├── Windows.yaml │ ├── iOS.yaml │ ├── macOS.yaml │ ├── tvOS.yaml │ └── watchOS.yaml ├── .gitignore ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── README.md ├── Refresh (Linux).sh ├── Refresh (macOS).command ├── Sources ├── WorkspaceConfiguration │ ├── Configuration │ │ ├── ContinousIntegrationConfiguration.swift │ │ ├── CustomTask.swift │ │ ├── Documentation │ │ │ ├── APIDocumentationConfiguration.swift │ │ │ ├── DocumentationConfiguration.swift │ │ │ ├── ReadMeConfiguration.swift │ │ │ └── RelatedProjectEntry.swift │ │ ├── FileHeaderConfiguration.swift │ │ ├── GitConfiguration.swift │ │ ├── GitHub │ │ │ ├── Contributing Template.txt │ │ │ ├── GitHubConfiguration.swift │ │ │ ├── IssueTemplate.swift │ │ │ ├── Mitwirken Vorlage.txt │ │ │ ├── ProvidedIssueTemplate.swift │ │ │ └── Pull Request Template.txt │ │ ├── Licence │ │ │ ├── Licence.swift │ │ │ └── LicenceConfiguration.swift │ │ ├── Proofreading │ │ │ ├── ProofreadingConfiguration.swift │ │ │ ├── ProofreadingRule.swift │ │ │ ├── ProofreadingRuleCategory.swift │ │ │ ├── SwiftFormatConfiguration.swift │ │ │ └── UnicodeRuleScope.swift │ │ ├── RepositoryConfiguration.swift │ │ ├── Testing │ │ │ ├── TestCoverageExemptionToken.swift │ │ │ ├── TestCoverageExemptionTokenScope.swift │ │ │ └── TestingConfiguration.swift │ │ └── WorkspaceConfiguration.swift │ ├── Context │ │ ├── PackageManifest.swift │ │ ├── Platform.swift │ │ ├── Product.swift │ │ ├── ProductType.swift │ │ └── WorkspaceContext.swift │ ├── Exports.swift │ ├── General │ │ ├── Array.swift │ │ ├── Dictionary.swift │ │ ├── LazyOption.swift │ │ ├── LocalizationIdentifier.swift │ │ └── Markdown.swift │ ├── Resources.swift │ └── Resources │ │ ├── Resources 1.swift │ │ ├── Resources 2.swift │ │ └── Resources 3.swift ├── WorkspaceImplementation │ ├── Interface │ │ ├── CheckForUpdates.swift │ │ ├── Document.swift │ │ ├── Normalize.swift │ │ ├── Options │ │ │ ├── ContinuousIntegrationJob + Options.swift │ │ │ └── Options.swift │ │ ├── Proofread │ │ │ ├── Proofread.swift │ │ │ ├── ProofreadGenerateXcodeProject.swift │ │ │ └── ProofreadProofread.swift │ │ ├── Refresh │ │ │ ├── Refresh.swift │ │ │ ├── RefreshAll.swift │ │ │ ├── RefreshContinuousIntegration.swift │ │ │ ├── RefreshExamples.swift │ │ │ ├── RefreshFileHeaders.swift │ │ │ ├── RefreshGit.swift │ │ │ ├── RefreshGitHub.swift │ │ │ ├── RefreshInheritedDocumentation.swift │ │ │ ├── RefreshLicence.swift │ │ │ ├── RefreshReadMe.swift │ │ │ ├── RefreshResources.swift │ │ │ └── RefreshScripts.swift │ │ ├── Test.swift │ │ ├── Validate │ │ │ ├── Validate.swift │ │ │ ├── ValidateAll.swift │ │ │ ├── ValidateBuild.swift │ │ │ ├── ValidateDocumentationCoverage.swift │ │ │ └── ValidateTestCoverage.swift │ │ └── Workspace.swift │ ├── Resources.swift │ ├── Resources │ │ ├── Resources 1.swift │ │ ├── Resources 2.swift │ │ ├── Resources 3.swift │ │ ├── Resources 4.swift │ │ ├── Resources 5.swift │ │ ├── Resources 6.swift │ │ └── Resources 7.swift │ ├── Shared │ │ ├── Custom Tasks │ │ │ └── CustomTask.swift │ │ ├── Environment │ │ │ └── ProcessInfo.swift │ │ ├── Parsing │ │ │ ├── InterfaceLocalization + Parsing.swift │ │ │ └── PatternMatch.swift │ │ ├── Project │ │ │ ├── BlockCommentSyntax.swift │ │ │ ├── Copyright.swift │ │ │ ├── FileSyntax.swift │ │ │ ├── FileType.swift │ │ │ ├── LineCommentSyntax.swift │ │ │ ├── OperatingSystem.swift │ │ │ ├── PackageRepository.swift │ │ │ ├── ProductType.swift │ │ │ ├── StringFamily.swift │ │ │ ├── TextFile.swift │ │ │ ├── Version.swift │ │ │ └── WorkspaceConfiguration.swift │ │ ├── Swift │ │ │ ├── OperatorTable.swift │ │ │ ├── SwiftLanguage.Casing.swift │ │ │ ├── SwiftLanguage.swift │ │ │ └── SwiftPMUnavailableError.swift │ │ └── Validation │ │ │ ├── Output.swift │ │ │ ├── ReportSection.swift │ │ │ └── ValidationStatus.swift │ ├── SleeplessMain.swift │ └── Tasks │ │ ├── Continuous Integration │ │ ├── ContinuousIntegrationJob.swift │ │ └── PackageRepository + Continuous Integration.swift │ │ ├── Documentation │ │ ├── API │ │ │ ├── PackageAPI.swift │ │ │ ├── SymbolDocumentation.swift │ │ │ ├── SymbolGraph.LineList.swift │ │ │ ├── SymbolGraph.Symbol.KindIdentifier.swift │ │ │ └── SymbolLike.swift │ │ ├── Command Interface │ │ │ ├── CommandInterface.swift │ │ │ ├── CommandInterfaceInformation.swift │ │ │ └── PackageCLI.swift │ │ ├── Documentation Bundle │ │ │ ├── Article.swift │ │ │ ├── CommandArticle.swift │ │ │ ├── DocumentationBundle.swift │ │ │ ├── LibraryArticle.swift │ │ │ ├── ModuleDocumenationBundle.swift │ │ │ └── PackageDocumentationBundle.swift │ │ ├── HTML Syntax │ │ │ └── ElementSyntax.swift │ │ ├── Markdown Syntax │ │ │ └── Markdown.swift │ │ ├── PackageRepository + Documentation.swift │ │ ├── Status │ │ │ └── DocumentationStatus.swift │ │ └── Swift Syntax │ │ │ └── DocumentationContent.swift │ │ ├── Examples │ │ └── PackageRepository + Examples.swift │ │ ├── File Headers │ │ └── PackageRepository + File Headers.swift │ │ ├── Git │ │ └── PackageRepository + Git.swift │ │ ├── GitHub │ │ └── PackageRepository + GitHub.swift │ │ ├── Licence │ │ ├── Licence.swift │ │ ├── Licences │ │ │ ├── Apache 2.0.md │ │ │ ├── Copyright.md │ │ │ ├── GNU General Public 3.0.md │ │ │ ├── MIT.md │ │ │ └── Unlicense.md │ │ └── PackageRepository + Licence.swift │ │ ├── Normalization │ │ ├── Configuration + Normalization.swift │ │ └── PackageRepository + Normalization.swift │ │ ├── Open Source │ │ └── PackageRepository + Open Source.swift │ │ ├── Proofreading │ │ ├── PackageRepository + Proofreading.swift │ │ ├── ProofreadingReporter.swift │ │ ├── ProofreadingStatus.swift │ │ ├── Reporters │ │ │ ├── CommandLineProofreadingReporter.swift │ │ │ └── XcodeProofreadingReporter.swift │ │ ├── Rule.swift │ │ ├── RuleProtocol.swift │ │ ├── Rules │ │ │ ├── Documentation │ │ │ │ └── SyntaxColouring.swift │ │ │ ├── Functionality │ │ │ │ ├── AccessControl.swift │ │ │ │ ├── ClassFinality.swift │ │ │ │ ├── CompatibilityCharacters.swift │ │ │ │ ├── ExplicitTypes.swift │ │ │ │ ├── HeadingLevels.swift │ │ │ │ ├── Mark.swift │ │ │ │ └── ParameterDocumentation.swift │ │ │ ├── Intentional │ │ │ │ └── MissingImplementation.swift │ │ │ ├── ProofreadingRule.swift │ │ │ ├── Source Code Style │ │ │ │ ├── Asterisms.swift │ │ │ │ ├── CalloutCasing.swift │ │ │ │ ├── ClosureSignaturePosition.swift │ │ │ │ ├── ListSeparation.swift │ │ │ │ ├── MarkdownHeadings.swift │ │ │ │ └── ParameterGrouping.swift │ │ │ └── Text Style │ │ │ │ ├── Bullets.swift │ │ │ │ └── Unicode.swift │ │ ├── Setting.swift │ │ ├── StyleViolation.Location.swift │ │ ├── StyleViolation.swift │ │ ├── SyntaxProtocol.swift │ │ ├── SyntaxRule.swift │ │ ├── SyntaxScanner.swift │ │ ├── TextRule.swift │ │ ├── Warning.swift │ │ └── Warnings │ │ │ ├── ManualWarnings.swift │ │ │ └── WorkaroundReminders.swift │ │ ├── Resources │ │ ├── PackageRepository + Resources.swift │ │ ├── PackageRepository.Target.swift │ │ ├── Resource.Constructor.swift │ │ └── Resource.swift │ │ ├── Scripts │ │ ├── PackageRepository + Scripts.swift │ │ └── Script.swift │ │ ├── Testing │ │ ├── ContinuousIntegrationJob + Testing.swift │ │ └── PackageRepository + Testing.swift │ │ └── Xcode │ │ ├── PackageRepository + Xcode.swift │ │ └── Project Components │ │ ├── Proofread Scheme.xcscheme │ │ └── ProofreadProject.pbxproj ├── WorkspaceLocalizations │ ├── ContentLocalization.swift │ └── InterfaceLocalization.swift ├── WorkspaceProjectConfiguration │ ├── Copy Sources.txt │ └── Placeholder.swift └── WorkspaceTool │ └── main.swift ├── Tests ├── CrossPlatform │ ├── CrossPlatform.swift │ ├── Resource.txt │ ├── Resources.swift │ └── Resources │ │ └── Resources 1.swift ├── CrossPlatformC │ ├── CrossPlatform.c │ └── include │ │ └── WSCrossPlatformC.h ├── CrossPlatformTests │ └── CrossPlatformTests.swift ├── Mock Projects │ ├── After │ │ ├── AllDisabled │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── AllDisabled │ │ │ │ │ └── AllDisabled.swift │ │ │ └── Tests │ │ │ │ └── AllDisabledTests │ │ │ │ └── AllDisabledTests.swift │ │ ├── AllTasks │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ ├── Amazon Linux.yaml │ │ │ │ │ ├── Android.yaml │ │ │ │ │ ├── Miscellaneous.yaml │ │ │ │ │ ├── Ubuntu.yaml │ │ │ │ │ ├── Web.yaml │ │ │ │ │ ├── Windows.yaml │ │ │ │ │ ├── iOS.yaml │ │ │ │ │ ├── macOS.yaml │ │ │ │ │ ├── tvOS.yaml │ │ │ │ │ └── watchOS.yaml │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Refresh (Linux).sh │ │ │ ├── Refresh (macOS).command │ │ │ ├── Sources │ │ │ │ └── AllTasks │ │ │ │ │ └── AllTasks.swift │ │ │ └── Tests │ │ │ │ └── AllTasksTests │ │ │ │ └── AllTasksTests.swift │ │ ├── BadStyle │ │ │ ├── .Workspace Configuration.txt │ │ │ ├── .gitignore │ │ │ ├── Other │ │ │ │ ├── CSS.css │ │ │ │ ├── HTML.html │ │ │ │ └── JavaScript.js │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── BadStyle │ │ │ │ │ └── Resource.txt │ │ │ ├── Sources │ │ │ │ ├── BadStyle │ │ │ │ │ ├── BadStyle.swift │ │ │ │ │ ├── Normalization │ │ │ │ │ │ ├── Decomposition.swift │ │ │ │ │ │ ├── EmptyIndents.swift │ │ │ │ │ │ ├── MarkdownLineBreaks.md │ │ │ │ │ │ └── ShellExecutability.sh │ │ │ │ │ ├── Rules │ │ │ │ │ │ ├── Documentation │ │ │ │ │ │ │ └── SyntaxColouring.swift │ │ │ │ │ │ ├── Functionality │ │ │ │ │ │ │ ├── AccessControl.swift │ │ │ │ │ │ │ ├── ClassFinality.swift │ │ │ │ │ │ │ ├── CompatibilityCharacters.swift │ │ │ │ │ │ │ ├── ExplicitTypes.swift │ │ │ │ │ │ │ ├── HeadingLevels.swift │ │ │ │ │ │ │ ├── Mark.swift │ │ │ │ │ │ │ └── ParameterDocumentation.swift │ │ │ │ │ │ ├── Intentional │ │ │ │ │ │ │ └── MissingImplementation.swift │ │ │ │ │ │ ├── Source Code Style │ │ │ │ │ │ │ ├── Asterisms.swift │ │ │ │ │ │ │ ├── CalloutCasing.swift │ │ │ │ │ │ │ ├── ClosureSignaturePosition.swift │ │ │ │ │ │ │ ├── ListSeparation.swift │ │ │ │ │ │ │ ├── MarkdownHeadings.swift │ │ │ │ │ │ │ └── ParameterStyle.swift │ │ │ │ │ │ └── Text Style │ │ │ │ │ │ │ ├── Bullets.swift │ │ │ │ │ │ │ └── Unicode.swift │ │ │ │ │ ├── SwiftFormat.swift │ │ │ │ │ └── Warnings │ │ │ │ │ │ ├── Warning.swift │ │ │ │ │ │ └── Workaround.swift │ │ │ │ └── executable │ │ │ │ │ ├── AccessControl.swift │ │ │ │ │ └── main.swift │ │ │ └── Tests │ │ │ │ └── BadStyleTests │ │ │ │ └── BadStyleTests.swift │ │ ├── BrokenExample │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── BrokenExample │ │ │ │ │ └── BrokenExample.swift │ │ │ └── Tests │ │ │ │ └── BrokenExampleTests │ │ │ │ └── BrokenExampleTests.swift │ │ ├── BrokenTests │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── Sources │ │ │ │ └── BrokenTests │ │ │ │ │ └── BrokenTests.swift │ │ │ └── Tests │ │ │ │ └── BrokenTestsTests │ │ │ │ └── BrokenTestsTests.swift │ │ ├── CheckedInDocumentation │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ ├── CheckedInDocumentation │ │ │ │ │ └── CheckedInDocumentation.swift │ │ │ │ ├── EnableBuild │ │ │ │ │ └── EnableBuild.swift │ │ │ │ ├── Extensions │ │ │ │ │ └── Extensions.swift │ │ │ │ └── Tool │ │ │ │ │ ├── Deutsch.txt │ │ │ │ │ ├── English.txt │ │ │ │ │ ├── Namespace │ │ │ │ │ └── Namespaced.txt │ │ │ │ │ ├── Resources.swift │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Resources 1.swift │ │ │ │ │ ├── Resources 2.swift │ │ │ │ │ └── Resources 3.swift │ │ │ │ │ └── main.swift │ │ │ └── Tests │ │ │ │ └── CheckedInDocumentationTests │ │ │ │ └── CheckedInDocumentationTests.swift │ │ ├── ContinuousIntegrationWithoutScripts │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── Amazon Linux.yaml │ │ │ │ │ ├── Android.yaml │ │ │ │ │ ├── Miscellaneous.yaml │ │ │ │ │ ├── Ubuntu.yaml │ │ │ │ │ ├── Web.yaml │ │ │ │ │ ├── Windows.yaml │ │ │ │ │ ├── iOS.yaml │ │ │ │ │ ├── macOS.yaml │ │ │ │ │ ├── tvOS.yaml │ │ │ │ │ └── watchOS.yaml │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── ContinuousIntegrationWithoutScripts │ │ │ │ │ └── ContinuousIntegrationWithoutScripts.swift │ │ │ └── Tests │ │ │ │ └── ContinuousIntegrationWithoutScriptsTests │ │ │ │ └── ContinuousIntegrationWithoutScriptsTests.swift │ │ ├── CustomProofread │ │ │ ├── .gitignore │ │ │ ├── .swiftlint.yml │ │ │ ├── LICENSE.md │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── CustomProofread │ │ │ │ │ └── CustomProofread.swift │ │ │ └── Tests │ │ │ │ └── CustomProofreadTests │ │ │ │ └── CustomProofreadTests.swift │ │ ├── CustomReadMe │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── CustomReadMe │ │ │ │ │ └── CustomReadMe.swift │ │ │ └── Tests │ │ │ │ └── CustomReadMeTests │ │ │ │ └── CustomReadMeTests.swift │ │ ├── CustomTasks │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── CustomTasks │ │ │ │ │ └── CustomTasks.swift │ │ │ └── Tests │ │ │ │ └── CustomTasksTests │ │ │ │ └── CustomTasksTests.swift │ │ ├── Default │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Refresh (Linux).sh │ │ │ ├── Refresh (macOS).command │ │ │ ├── Sources │ │ │ │ └── Default │ │ │ │ │ └── Default.swift │ │ │ └── Tests │ │ │ │ └── DefaultTests │ │ │ │ └── DefaultTests.swift │ │ ├── Deutsch │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── Amazon Linux.yaml │ │ │ │ │ ├── Android.yaml │ │ │ │ │ ├── Dokumentationsverteilung.yaml │ │ │ │ │ ├── Netz.yaml │ │ │ │ │ ├── Sonstiges.yaml │ │ │ │ │ ├── Ubuntu.yaml │ │ │ │ │ ├── Windows.yaml │ │ │ │ │ ├── iOS.yaml │ │ │ │ │ ├── macOS.yaml │ │ │ │ │ ├── tvOS.yaml │ │ │ │ │ └── watchOS.yaml │ │ │ ├── .gitignore │ │ │ ├── Auffrischen (Linux).sh │ │ │ ├── Auffrischen (macOS).command │ │ │ ├── Other │ │ │ │ └── Something.something │ │ │ ├── Package.swift │ │ │ ├── Prüfen (macOS).command │ │ │ ├── Sources │ │ │ │ ├── Deutsch │ │ │ │ │ └── Deutsch.swift │ │ │ │ └── werkzeug │ │ │ │ │ ├── Deutsch.txt │ │ │ │ │ ├── Resources.swift │ │ │ │ │ ├── Resources │ │ │ │ │ └── Resources 1.swift │ │ │ │ │ └── main.swift │ │ │ └── Tests │ │ │ │ └── DeutschTests │ │ │ │ └── DeutschTests.swift │ │ ├── Executable │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ └── Executable │ │ │ │ └── main.swift │ │ ├── FailingCustomTasks │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── FailingCustomTasks │ │ │ │ │ └── FailingCustomTasks.swift │ │ │ └── Tests │ │ │ │ └── FailingCustomTasksTests │ │ │ │ └── FailingCustomTasksTests.swift │ │ ├── FailingCustomValidation │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── FailingCustomValidation │ │ │ │ │ └── FailingCustomValidation.swift │ │ │ └── Tests │ │ │ │ └── FailingCustomValidationTests │ │ │ │ └── FailingCustomValidationTests.swift │ │ ├── FailingDocumentationCoverage │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── FailingDocumentationCoverage │ │ │ │ │ └── FailingDocumentationCoverage.swift │ │ │ └── Tests │ │ │ │ └── FailingDocumentationCoverageTests │ │ │ │ └── FailingDocumentationCoverageTests.swift │ │ ├── FailingTestCoverage │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── Sources │ │ │ │ └── FailingTestCoverage │ │ │ │ │ ├── Exempt │ │ │ │ │ └── Exempt.swift │ │ │ │ │ └── FailingTestCoverage.swift │ │ │ └── Tests │ │ │ │ └── FailingTestCoverageTests │ │ │ │ └── FailingTestCoverageTests.swift │ │ ├── FailingTests │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── FailingTests │ │ │ │ │ ├── Exempt │ │ │ │ │ └── Exempt.swift │ │ │ │ │ └── FailingTests.swift │ │ │ └── Tests │ │ │ │ └── FailingTestsTests │ │ │ │ └── FailingTestsTests.swift │ │ ├── Headers │ │ │ ├── .gitignore │ │ │ ├── Other │ │ │ │ ├── HTML.html │ │ │ │ ├── Lisp.el │ │ │ │ ├── Python.py │ │ │ │ ├── Ruby.rb │ │ │ │ └── Stencil.stencil │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── Headers │ │ │ │ │ ├── Block.swift │ │ │ │ │ ├── BlockExample.swift │ │ │ │ │ ├── Documentation.swift │ │ │ │ │ ├── EmptyBlock.swift │ │ │ │ │ └── LineDocumentation.swift │ │ │ └── Tests │ │ │ │ └── HeadersTests │ │ │ │ └── HeadersTests.swift │ │ ├── MissingDocumentation │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── MissingDocumentation │ │ │ │ │ └── MissingDocumentation.swift │ │ │ └── Tests │ │ │ │ └── MissingDocumentationTests │ │ │ │ └── MissingDocumentationTests.swift │ │ ├── MissingExample │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── MissingExample │ │ │ │ │ └── MissingExample.swift │ │ │ └── Tests │ │ │ │ └── MissingExampleTests │ │ │ │ └── MissingExampleTests.swift │ │ ├── MissingReadMeLocalization │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── MissingReadMeLocalization │ │ │ │ │ └── MissingReadMeLocalization.swift │ │ │ └── Tests │ │ │ │ └── MissingReadMeLocalizationTests │ │ │ │ └── MissingReadMeLocalizationTests.swift │ │ ├── MultipleProducts │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ ├── ModuleA │ │ │ │ └── Module.swift │ │ │ │ ├── ModuleB │ │ │ │ └── Module.swift │ │ │ │ ├── ModuleC │ │ │ │ └── Module.swift │ │ │ │ ├── ModuleD │ │ │ │ └── Module.swift │ │ │ │ ├── executable‐a │ │ │ │ └── main.swift │ │ │ │ └── executable‐b │ │ │ │ └── main.swift │ │ ├── NoLibraries │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── NoLibraries │ │ │ │ │ └── NoLibraries.swift │ │ │ └── Tests │ │ │ │ └── NoLibrariesTests │ │ │ │ └── NoLibrariesTests.swift │ │ ├── NoLocalizations │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── NoLocalizations │ │ │ │ │ └── NoLocalizations.swift │ │ │ └── Tests │ │ │ │ └── NoLocalizationsTests │ │ │ │ └── NoLocalizationsTests.swift │ │ ├── NoXcodeProject │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── Sources │ │ │ │ └── NoXcodeProject │ │ │ │ │ └── NoXcodeProject.swift │ │ │ └── Tests │ │ │ │ └── NoXcodeProjectTests │ │ │ │ └── NoXcodeProjectTests.swift │ │ ├── NurDeutsch │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── 🇬🇧EN Bug Report.md │ │ │ │ │ ├── 🇬🇧EN Documentation Correction.md │ │ │ │ │ ├── 🇬🇧EN Feature Request.md │ │ │ │ │ └── 🇬🇧EN Question.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── Etwas.etwas │ │ │ ├── Package.swift │ │ │ ├── Sources │ │ │ │ └── NurDeutsch │ │ │ │ │ └── NurDeutsch.swift │ │ │ └── Tests │ │ │ │ └── NurDeutschTests │ │ │ │ └── NurDeutschTests.swift │ │ ├── OneLocalization │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── 🇬🇧EN Bug Report.md │ │ │ │ │ ├── 🇬🇧EN Documentation Correction.md │ │ │ │ │ ├── 🇬🇧EN Feature Request.md │ │ │ │ │ └── 🇬🇧EN Question.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── OneLocalization │ │ │ │ │ └── OneLocalization.swift │ │ │ └── Tests │ │ │ │ └── OneLocalizationTests │ │ │ │ └── OneLocalizationTests.swift │ │ ├── OneProductMultipleModules │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── Amazon Linux.yaml │ │ │ │ │ ├── Miscellaneous.yaml │ │ │ │ │ ├── Ubuntu.yaml │ │ │ │ │ ├── Web.yaml │ │ │ │ │ ├── iOS.yaml │ │ │ │ │ ├── macOS.yaml │ │ │ │ │ ├── tvOS.yaml │ │ │ │ │ └── watchOS.yaml │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ ├── ModuleA │ │ │ │ └── OneProductMultipleModules.swift │ │ │ │ └── ModuleB │ │ │ │ └── OneProductMultipleModules.swift │ │ ├── OnlyBritish │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── 🇬🇧EN Bug Report.md │ │ │ │ │ ├── 🇬🇧EN Documentation Correction.md │ │ │ │ │ ├── 🇬🇧EN Feature Request.md │ │ │ │ │ └── 🇬🇧EN Question.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── Sources │ │ │ │ └── OnlyBritish │ │ │ │ │ └── OnlyBritish.swift │ │ │ └── Tests │ │ │ │ └── OnlyBritishTests │ │ │ │ └── OnlyBritishTests.swift │ │ ├── PartialReadMe │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── 🇨🇦EN Bug Report.md │ │ │ │ │ ├── 🇨🇦EN Documentation Correction.md │ │ │ │ │ ├── 🇨🇦EN Feature Request.md │ │ │ │ │ ├── 🇨🇦EN Question.md │ │ │ │ │ ├── 🇩🇪DE Dokumentationsberichtigung.md │ │ │ │ │ ├── 🇩🇪DE Erweiterungswünsch.md │ │ │ │ │ ├── 🇩🇪DE Fehlermeldung.md │ │ │ │ │ ├── 🇩🇪DE Frage.md │ │ │ │ │ ├── 🇬🇧EN Bug Report.md │ │ │ │ │ ├── 🇬🇧EN Documentation Correction.md │ │ │ │ │ ├── 🇬🇧EN Feature Request.md │ │ │ │ │ ├── 🇬🇧EN Question.md │ │ │ │ │ ├── 🇺🇸EN Bug Report.md │ │ │ │ │ ├── 🇺🇸EN Documentation Correction.md │ │ │ │ │ ├── 🇺🇸EN Feature Request.md │ │ │ │ │ └── 🇺🇸EN Question.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ └── PartialReadMe │ │ │ │ │ └── PartialReadMe.swift │ │ │ └── Tests │ │ │ │ └── PartialReadMeTests │ │ │ │ └── PartialReadMeTests.swift │ │ ├── SDGLibrary │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── 🇨🇦EN Bug Report.md │ │ │ │ │ ├── 🇨🇦EN Documentation Correction.md │ │ │ │ │ ├── 🇨🇦EN Feature Request.md │ │ │ │ │ ├── 🇨🇦EN Question.md │ │ │ │ │ ├── 🇩🇪DE Dokumentationsberichtigung.md │ │ │ │ │ ├── 🇩🇪DE Erweiterungswünsch.md │ │ │ │ │ ├── 🇩🇪DE Fehlermeldung.md │ │ │ │ │ ├── 🇩🇪DE Frage.md │ │ │ │ │ ├── 🇬🇧EN Bug Report.md │ │ │ │ │ ├── 🇬🇧EN Documentation Correction.md │ │ │ │ │ ├── 🇬🇧EN Feature Request.md │ │ │ │ │ ├── 🇬🇧EN Question.md │ │ │ │ │ ├── 🇺🇸EN Bug Report.md │ │ │ │ │ ├── 🇺🇸EN Documentation Correction.md │ │ │ │ │ ├── 🇺🇸EN Feature Request.md │ │ │ │ │ └── 🇺🇸EN Question.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ ├── Amazon Linux.yaml │ │ │ │ │ ├── Android.yaml │ │ │ │ │ ├── Documentation Deployment.yaml │ │ │ │ │ ├── Miscellaneous.yaml │ │ │ │ │ ├── Ubuntu.yaml │ │ │ │ │ ├── Web.yaml │ │ │ │ │ ├── Windows.yaml │ │ │ │ │ ├── iOS.yaml │ │ │ │ │ ├── macOS.yaml │ │ │ │ │ ├── tvOS.yaml │ │ │ │ │ └── watchOS.yaml │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── Other │ │ │ │ ├── GeneratedData.json │ │ │ │ └── Unsupported Filetype.xyz │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Refresh (Linux).sh │ │ │ ├── Refresh (macOS).command │ │ │ ├── Sources │ │ │ │ └── Library │ │ │ │ │ ├── (Named with) Punctuation!.txt │ │ │ │ │ ├── 2001‐01‐01 (Named with Numbers).txt │ │ │ │ │ ├── Namespace │ │ │ │ │ └── Data Resource │ │ │ │ │ ├── Resources.swift │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Resources 1.swift │ │ │ │ │ ├── Resources 2.swift │ │ │ │ │ ├── Resources 3.swift │ │ │ │ │ └── Resources 4.swift │ │ │ │ │ ├── SDG.swift │ │ │ │ │ └── Text Resource.txt │ │ │ └── Tests │ │ │ │ └── SDGTests │ │ │ │ ├── Resources.swift │ │ │ │ ├── Resources │ │ │ │ └── Resources 1.swift │ │ │ │ ├── SDGTests.swift │ │ │ │ └── Text Resource.txt │ │ └── SDGTool │ │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── 🇨🇦EN Bug Report.md │ │ │ │ ├── 🇨🇦EN Documentation Correction.md │ │ │ │ ├── 🇨🇦EN Feature Request.md │ │ │ │ ├── 🇨🇦EN Question.md │ │ │ │ ├── 🇩🇪DE Dokumentationsberichtigung.md │ │ │ │ ├── 🇩🇪DE Erweiterungswünsch.md │ │ │ │ ├── 🇩🇪DE Fehlermeldung.md │ │ │ │ ├── 🇩🇪DE Frage.md │ │ │ │ ├── 🇬🇧EN Bug Report.md │ │ │ │ ├── 🇬🇧EN Documentation Correction.md │ │ │ │ ├── 🇬🇧EN Feature Request.md │ │ │ │ ├── 🇬🇧EN Question.md │ │ │ │ ├── 🇺🇸EN Bug Report.md │ │ │ │ ├── 🇺🇸EN Documentation Correction.md │ │ │ │ ├── 🇺🇸EN Feature Request.md │ │ │ │ └── 🇺🇸EN Question.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ ├── Amazon Linux.yaml │ │ │ │ ├── Android.yaml │ │ │ │ ├── Documentation Deployment.yaml │ │ │ │ ├── Miscellaneous.yaml │ │ │ │ ├── Ubuntu.yaml │ │ │ │ ├── Web.yaml │ │ │ │ ├── Windows.yaml │ │ │ │ └── macOS.yaml │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Refresh (Linux).sh │ │ │ ├── Refresh (macOS).command │ │ │ ├── Sources │ │ │ ├── Library │ │ │ │ ├── (Named with) Punctuation!.txt │ │ │ │ ├── 2001‐01‐01 (Named with Numbers).txt │ │ │ │ ├── Namespace │ │ │ │ │ └── Data Resource │ │ │ │ ├── Resources.swift │ │ │ │ ├── Resources │ │ │ │ │ ├── Resources 1.swift │ │ │ │ │ ├── Resources 2.swift │ │ │ │ │ ├── Resources 3.swift │ │ │ │ │ └── Resources 4.swift │ │ │ │ ├── SDG.swift │ │ │ │ └── Text Resource.txt │ │ │ └── tool │ │ │ │ └── main.swift │ │ │ └── Tests │ │ │ ├── SDGTests │ │ │ └── SDGTests.swift │ │ │ └── test‐tool │ │ │ ├── Resources.swift │ │ │ ├── Resources │ │ │ └── Resources 1.swift │ │ │ ├── Text Resource.txt │ │ │ └── main.swift │ └── Before │ │ ├── AllDisabled │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── AllDisabled │ │ │ │ └── AllDisabled.swift │ │ └── Tests │ │ │ ├── AllDisabledTests │ │ │ ├── AllDisabledTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── AllTasks │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── AllTasks │ │ │ │ └── AllTasks.swift │ │ └── Tests │ │ │ ├── AllTasksTests │ │ │ └── AllTasksTests.swift │ │ │ └── LinuxMain.swift │ │ ├── BadStyle │ │ ├── .Workspace Configuration.txt │ │ ├── .gitignore │ │ ├── Other │ │ │ ├── CSS.css │ │ │ ├── HTML.html │ │ │ └── JavaScript.js │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Resources │ │ │ └── BadStyle │ │ │ │ └── Resource.txt │ │ ├── Sources │ │ │ ├── BadStyle │ │ │ │ ├── BadStyle.swift │ │ │ │ ├── Normalization │ │ │ │ │ ├── Decomposition.swift │ │ │ │ │ ├── EmptyIndents.swift │ │ │ │ │ ├── MarkdownLineBreaks.md │ │ │ │ │ └── ShellExecutability.sh │ │ │ │ ├── Rules │ │ │ │ │ ├── Documentation │ │ │ │ │ │ └── SyntaxColouring.swift │ │ │ │ │ ├── Functionality │ │ │ │ │ │ ├── AccessControl.swift │ │ │ │ │ │ ├── ClassFinality.swift │ │ │ │ │ │ ├── CompatibilityCharacters.swift │ │ │ │ │ │ ├── ExplicitTypes.swift │ │ │ │ │ │ ├── HeadingLevels.swift │ │ │ │ │ │ ├── Mark.swift │ │ │ │ │ │ └── ParameterDocumentation.swift │ │ │ │ │ ├── Intentional │ │ │ │ │ │ └── MissingImplementation.swift │ │ │ │ │ ├── Source Code Style │ │ │ │ │ │ ├── Asterisms.swift │ │ │ │ │ │ ├── CalloutCasing.swift │ │ │ │ │ │ ├── ClosureSignaturePosition.swift │ │ │ │ │ │ ├── ListSeparation.swift │ │ │ │ │ │ ├── MarkdownHeadings.swift │ │ │ │ │ │ └── ParameterStyle.swift │ │ │ │ │ └── Text Style │ │ │ │ │ │ ├── Bullets.swift │ │ │ │ │ │ └── Unicode.swift │ │ │ │ ├── SwiftFormat.swift │ │ │ │ └── Warnings │ │ │ │ │ ├── Warning.swift │ │ │ │ │ └── Workaround.swift │ │ │ └── executable │ │ │ │ ├── AccessControl.swift │ │ │ │ └── main.swift │ │ └── Tests │ │ │ ├── BadStyleTests │ │ │ ├── BadStyleTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── BrokenExample │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── BrokenExample │ │ │ │ └── BrokenExample.swift │ │ └── Tests │ │ │ ├── BrokenExampleTests │ │ │ ├── BrokenExampleTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── BrokenTests │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── BrokenTests │ │ │ │ └── BrokenTests.swift │ │ └── Tests │ │ │ ├── BrokenTestsTests │ │ │ ├── BrokenTestsTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── CheckedInDocumentation │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── CheckedInDocumentation │ │ │ │ └── CheckedInDocumentation.swift │ │ │ ├── EnableBuild │ │ │ │ └── EnableBuild.swift │ │ │ ├── Extensions │ │ │ │ └── Extensions.swift │ │ │ └── Tool │ │ │ │ ├── Deutsch.txt │ │ │ │ ├── English.txt │ │ │ │ ├── Namespace │ │ │ │ └── Namespaced.txt │ │ │ │ └── main.swift │ │ └── Tests │ │ │ ├── CheckedInDocumentationTests │ │ │ ├── CheckedInDocumentationTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── ContinuousIntegrationWithoutScripts │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── ContinuousIntegrationWithoutScripts │ │ │ │ └── ContinuousIntegrationWithoutScripts.swift │ │ └── Tests │ │ │ ├── ContinuousIntegrationWithoutScriptsTests │ │ │ ├── ContinuousIntegrationWithoutScriptsTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── CustomProofread │ │ ├── .swiftlint.yml │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── CustomProofread │ │ │ │ └── CustomProofread.swift │ │ └── Tests │ │ │ └── CustomProofreadTests │ │ │ └── CustomProofreadTests.swift │ │ ├── CustomReadMe │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── CustomReadMe │ │ │ │ └── CustomReadMe.swift │ │ └── Tests │ │ │ ├── CustomReadMeTests │ │ │ └── CustomReadMeTests.swift │ │ │ └── LinuxMain.swift │ │ ├── CustomTasks │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── CustomTasks │ │ │ │ └── CustomTasks.swift │ │ └── Tests │ │ │ ├── CustomTasksTests │ │ │ ├── CustomTasksTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── Default │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── Default │ │ │ │ └── Default.swift │ │ └── Tests │ │ │ ├── DefaultTests │ │ │ ├── DefaultTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── Deutsch │ │ ├── Other │ │ │ └── Something.something │ │ ├── Package.swift │ │ ├── Sources │ │ │ ├── Deutsch │ │ │ │ └── Deutsch.swift │ │ │ └── werkzeug │ │ │ │ ├── Deutsch.txt │ │ │ │ └── main.swift │ │ └── Tests │ │ │ ├── DeutschTests │ │ │ ├── DeutschTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── Executable │ │ ├── Package.swift │ │ ├── README.md │ │ └── Sources │ │ │ └── Executable │ │ │ └── main.swift │ │ ├── FailingCustomTasks │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── FailingCustomTasks │ │ │ │ └── FailingCustomTasks.swift │ │ └── Tests │ │ │ ├── FailingCustomTasksTests │ │ │ ├── FailingCustomTasksTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── FailingCustomValidation │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── FailingCustomValidation │ │ │ │ └── FailingCustomValidation.swift │ │ └── Tests │ │ │ ├── FailingCustomValidationTests │ │ │ ├── FailingCustomValidationTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── FailingDocumentationCoverage │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── FailingDocumentationCoverage │ │ │ │ └── FailingDocumentationCoverage.swift │ │ └── Tests │ │ │ ├── FailingDocumentationCoverageTests │ │ │ └── FailingDocumentationCoverageTests.swift │ │ │ └── LinuxMain.swift │ │ ├── FailingTestCoverage │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── FailingTestCoverage │ │ │ │ ├── Exempt │ │ │ │ └── Exempt.swift │ │ │ │ └── FailingTestCoverage.swift │ │ └── Tests │ │ │ └── FailingTestCoverageTests │ │ │ └── FailingTestCoverageTests.swift │ │ ├── FailingTests │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── FailingTests │ │ │ │ ├── Exempt │ │ │ │ └── Exempt.swift │ │ │ │ └── FailingTests.swift │ │ └── Tests │ │ │ ├── FailingTestsTests │ │ │ └── FailingTestsTests.swift │ │ │ └── LinuxMain.swift │ │ ├── Headers │ │ ├── Other │ │ │ ├── HTML.html │ │ │ ├── Lisp.el │ │ │ ├── Python.py │ │ │ ├── Ruby.rb │ │ │ └── Stencil.stencil │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── Headers │ │ │ │ ├── Block.swift │ │ │ │ ├── BlockExample.swift │ │ │ │ ├── Documentation.swift │ │ │ │ ├── EmptyBlock.swift │ │ │ │ └── LineDocumentation.swift │ │ └── Tests │ │ │ ├── HeadersTests │ │ │ ├── HeadersTests.swift │ │ │ └── XCTestManifests.swift │ │ │ └── LinuxMain.swift │ │ ├── MissingDocumentation │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── MissingDocumentation │ │ │ │ └── MissingDocumentation.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── MissingDocumentationTests │ │ │ ├── MissingDocumentationTests.swift │ │ │ └── XCTestManifests.swift │ │ ├── MissingExample │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── MissingExample │ │ │ │ └── MissingExample.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── MissingExampleTests │ │ │ ├── MissingExampleTests.swift │ │ │ └── XCTestManifests.swift │ │ ├── MissingReadMeLocalization │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── MissingReadMeLocalization │ │ │ │ └── MissingReadMeLocalization.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── MissingReadMeLocalizationTests │ │ │ ├── MissingReadMeLocalizationTests.swift │ │ │ └── XCTestManifests.swift │ │ ├── MultipleProducts │ │ ├── Package.swift │ │ ├── README.md │ │ └── Sources │ │ │ ├── ModuleA │ │ │ └── Module.swift │ │ │ ├── ModuleB │ │ │ └── Module.swift │ │ │ ├── ModuleC │ │ │ └── Module.swift │ │ │ ├── ModuleD │ │ │ └── Module.swift │ │ │ ├── executable‐a │ │ │ └── main.swift │ │ │ └── executable‐b │ │ │ └── main.swift │ │ ├── NoLibraries │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── NoLibraries │ │ │ │ └── NoLibraries.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── NoLibrariesTests │ │ │ ├── NoLibrariesTests.swift │ │ │ └── XCTestManifests.swift │ │ ├── NoLocalizations │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── NoLocalizations │ │ │ │ └── NoLocalizations.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── NoLocalizationsTests │ │ │ └── NoLocalizationsTests.swift │ │ ├── NoXcodeProject │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── NoXcodeProject │ │ │ │ └── NoXcodeProject.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── NoXcodeProjectTests │ │ │ ├── NoXcodeProjectTests.swift │ │ │ └── XCTestManifests.swift │ │ ├── NurDeutsch │ │ ├── CONTRIBUTING.md │ │ ├── Etwas.etwas │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── NurDeutsch │ │ │ │ └── NurDeutsch.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── NurDeutschTests │ │ │ ├── NurDeutschTests.swift │ │ │ └── XCTestManifests.swift │ │ ├── OneLocalization │ │ ├── CONTRIBUTING.md │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── OneLocalization │ │ │ │ └── OneLocalization.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── OneLocalizationTests │ │ │ ├── OneLocalizationTests.swift │ │ │ └── XCTestManifests.swift │ │ ├── OneProductMultipleModules │ │ ├── Package.swift │ │ ├── README.md │ │ └── Sources │ │ │ ├── ModuleA │ │ │ └── OneProductMultipleModules.swift │ │ │ └── ModuleB │ │ │ └── OneProductMultipleModules.swift │ │ ├── OnlyBritish │ │ ├── CONTRIBUTING.md │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── OnlyBritish │ │ │ │ └── OnlyBritish.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── OnlyBritishTests │ │ │ ├── OnlyBritishTests.swift │ │ │ └── XCTestManifests.swift │ │ ├── PartialReadMe │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── PartialReadMe │ │ │ │ └── PartialReadMe.swift │ │ └── Tests │ │ │ ├── LinuxMain.swift │ │ │ └── PartialReadMeTests │ │ │ └── PartialReadMeTests.swift │ │ ├── SDGLibrary │ │ ├── Other │ │ │ ├── GeneratedData.json │ │ │ └── Unsupported Filetype.xyz │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── Library │ │ │ │ ├── (Named with) Punctuation!.txt │ │ │ │ ├── 2001‐01‐01 (Named with Numbers).txt │ │ │ │ ├── Namespace │ │ │ │ └── Data Resource │ │ │ │ ├── Resources.swift │ │ │ │ ├── SDG.swift │ │ │ │ └── Text Resource.txt │ │ └── Tests │ │ │ └── SDGTests │ │ │ ├── Resources.swift │ │ │ ├── SDGTests.swift │ │ │ └── Text Resource.txt │ │ └── SDGTool │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── Library │ │ │ ├── (Named with) Punctuation!.txt │ │ │ ├── 2001‐01‐01 (Named with Numbers).txt │ │ │ ├── Namespace │ │ │ │ └── Data Resource │ │ │ ├── Resources.swift │ │ │ ├── SDG.swift │ │ │ └── Text Resource.txt │ │ └── tool │ │ │ └── main.swift │ │ └── Tests │ │ ├── SDGTests │ │ └── SDGTests.swift │ │ └── test‐tool │ │ ├── Resources.swift │ │ ├── Text Resource.txt │ │ └── main.swift ├── Test Specifications │ ├── Android.txt │ ├── Command │ │ ├── AllDisabled (refresh) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── AllDisabled (validate) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── AllTasks (refresh) │ │ │ └── 🇨🇦EN.txt │ │ ├── AllTasks (validate) │ │ │ └── 🇨🇦EN.txt │ │ ├── BadStyle (proofread •xcode) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── BadStyle (proofread) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── BrokenExample (refresh examples) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── BrokenTests (test) │ │ │ └── 🇨🇦EN.txt │ │ ├── CheckedInDocumentation (refresh) │ │ │ └── 🇨🇦EN.txt │ │ ├── CheckedInDocumentation (validate •job deployment) │ │ │ └── 🇨🇦EN.txt │ │ ├── CheckedInDocumentation (validate •job miscellaneous) │ │ │ └── 🇨🇦EN.txt │ │ ├── ContinuousIntegrationWithoutScripts (proofread) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── ContinuousIntegrationWithoutScripts (refresh continuous‐integration) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── ContinuousIntegrationWithoutScripts (refresh file‐headers) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── ContinuousIntegrationWithoutScripts (refresh licence) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── CustomProofread (proofread •xcode) │ │ │ └── 🇨🇦EN.txt │ │ ├── CustomProofread (proofread) │ │ │ └── 🇨🇦EN.txt │ │ ├── CustomProofread (refresh file‐headers) │ │ │ └── 🇨🇦EN.txt │ │ ├── CustomProofread (refresh licence) │ │ │ └── 🇨🇦EN.txt │ │ ├── CustomReadMe (refresh file‐headers) │ │ │ └── 🇨🇦EN.txt │ │ ├── CustomReadMe (refresh licence) │ │ │ └── 🇨🇦EN.txt │ │ ├── CustomReadMe (refresh read‐me) │ │ │ └── 🇨🇦EN.txt │ │ ├── CustomTasks (auffrischen fortlaufende‐einbindung) │ │ │ └── 🇨🇦EN.txt │ │ ├── CustomTasks (refresh) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── CustomTasks (validate) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Default (normalize) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (proofread generate‐xcode‐project) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (proofread •xcode) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (proofread) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (refresh examples) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (refresh inherited‐documentation) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (refresh resources) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (refresh scripts) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (refresh) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (test) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (validate build •job macos) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (validate build) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (validate documentation‐coverage) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (validate test‐coverage) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (validate •job macos) │ │ │ └── 🇨🇦EN.txt │ │ ├── Default (validate) │ │ │ └── 🇨🇦EN.txt │ │ ├── Deutsch (auffrischen fortlaufende‐einbindung) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (auffrischen git) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (auffrischen ressourcen) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (auffrischen skripte) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (dokumentieren) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (korrekturlesen xcode‐projekt‐erstellen) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (normalisieren) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (prüfen dokumentationsabdeckung) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (prüfen erstellung) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Deutsch (prüfen testabdeckung) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Executable (document) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Executable (refresh licence) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Executable (refresh read‐me) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Executable (validate documentation‐coverage) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── FailingCustomTasks (refresh) │ │ │ └── 🇨🇦EN.txt │ │ ├── FailingCustomValidation (validate) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── FailingDocumentationCoverage (document) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── FailingDocumentationCoverage (validate documentation‐coverage) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── FailingTestCoverage (validate test‐coverage) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── FailingTests (validate build •job miscellaneous) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── FailingTests (validate build) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── FailingTests (validate test‐coverage) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Headers (refresh examples) │ │ │ └── 🇨🇦EN.txt │ │ ├── Headers (refresh file‐headers) │ │ │ └── 🇨🇦EN.txt │ │ ├── Headers (refresh inherited‐documentation) │ │ │ └── 🇨🇦EN.txt │ │ ├── Headers (test) │ │ │ └── 🇨🇦EN.txt │ │ ├── Help (workspace document) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace normalize) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace proofread) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace refresh continuous‐integration) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace refresh examples) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace refresh inherited‐documentation) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace refresh resources) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace refresh scripts) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace refresh) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace validate) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── Help (workspace) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── MissingDocumentation (refresh inherited‐documentation) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── MissingExample (refresh examples) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── MissingReadMeLocalization (refresh read‐me) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── MultipleProducts (refresh read‐me) │ │ │ └── 🇨🇦EN.txt │ │ ├── NoLibraries (refresh read‐me) │ │ │ └── 🇨🇦EN.txt │ │ ├── NoLocalizations (refresh read‐me) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── NoLocalizations (validate documentation‐coverage) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── NoXcodeProject (validate build •job ios) │ │ │ ├── 🇨🇦EN.txt │ │ │ ├── 🇩🇪DE.txt │ │ │ ├── 🇬🇧EN.txt │ │ │ └── 🇺🇸EN.txt │ │ ├── NurDeutsch (auffrischen github) │ │ │ └── 🇩🇪DE.txt │ │ ├── NurDeutsch (korrekturlesen) │ │ │ └── 🇩🇪DE.txt │ │ ├── NurDeutsch (normalisieren) │ │ │ └── 🇩🇪DE.txt │ │ ├── NurDeutsch (prüfen erstellung) │ │ │ └── 🇩🇪DE.txt │ │ ├── NurDeutsch (testen) │ │ │ └── 🇩🇪DE.txt │ │ ├── OneLocalization (refresh github) │ │ │ └── 🇨🇦EN.txt │ │ ├── OneProductMultipleModules (refresh continuous‐integration) │ │ │ └── 🇨🇦EN.txt │ │ ├── OneProductMultipleModules (refresh read‐me) │ │ │ └── 🇨🇦EN.txt │ │ ├── OnlyBritish (normalize) │ │ │ └── 🇬🇧EN.txt │ │ ├── OnlyBritish (refresh github) │ │ │ └── 🇬🇧EN.txt │ │ ├── PartialReadMe (document) │ │ │ └── 🇨🇦EN.txt │ │ ├── PartialReadMe (refresh github) │ │ │ └── 🇨🇦EN.txt │ │ ├── PartialReadMe (refresh read‐me) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (normalize) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (proofread •xcode) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (proofread) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh continuous‐integration) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh examples) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh file‐headers) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh git) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh github) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh inherited‐documentation) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh licence) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh read‐me) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh resources) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (refresh scripts) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (test) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (validate build) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (validate documentation‐coverage) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (validate test‐coverage) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGLibrary (validate) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (normalize) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (proofread •xcode) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (proofread) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh continuous‐integration) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh examples) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh file‐headers) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh git) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh github) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh inherited‐documentation) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh licence) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh read‐me) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh resources) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (refresh scripts) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (test) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (validate build) │ │ │ └── 🇨🇦EN.txt │ │ ├── SDGTool (validate documentation‐coverage) │ │ │ └── 🇨🇦EN.txt │ │ └── SDGTool (validate test‐coverage) │ │ │ └── 🇨🇦EN.txt │ └── CustomStringConvertible │ │ └── LocalizationIdentifier │ │ ├── English.txt │ │ ├── Mandarin.txt │ │ └── Unknown.txt ├── WorkspaceConfigurationExample │ └── main.swift ├── WorkspaceConfigurationTests │ └── APITests.swift ├── WorkspaceTests │ ├── APITests.swift │ ├── FastTestLocalization.swift │ ├── InternalTests.swift │ ├── MockCommand.swift │ ├── MockProject.swift │ ├── NurDeutsch.swift │ ├── OnlyBritish.swift │ ├── RepositoryRoot.swift │ └── Test Helpers │ │ ├── Command.Output.swift │ │ ├── CustomTask.swift │ │ ├── PackageRepository.swift │ │ └── ProcessInfo.swift └── cross_platform_tool │ └── main.swift └── Workspace.swift /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇨🇦EN Bug Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇨🇦EN Bug Report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇨🇦EN Documentation Correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇨🇦EN Documentation Correction.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇨🇦EN Feature Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇨🇦EN Feature Request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇨🇦EN Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇨🇦EN Question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇩🇪DE Dokumentationsberichtigung.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇩🇪DE Dokumentationsberichtigung.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇩🇪DE Erweiterungswünsch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇩🇪DE Erweiterungswünsch.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇩🇪DE Fehlermeldung.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇩🇪DE Fehlermeldung.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇩🇪DE Frage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇩🇪DE Frage.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇬🇧EN Bug Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇬🇧EN Bug Report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇬🇧EN Documentation Correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇬🇧EN Documentation Correction.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇬🇧EN Feature Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇬🇧EN Feature Request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇬🇧EN Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇬🇧EN Question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇺🇸EN Bug Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇺🇸EN Bug Report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇺🇸EN Documentation Correction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇺🇸EN Documentation Correction.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇺🇸EN Feature Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇺🇸EN Feature Request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🇺🇸EN Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/ISSUE_TEMPLATE/🇺🇸EN Question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/Amazon Linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Amazon Linux.yaml -------------------------------------------------------------------------------- /.github/workflows/Android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Android.yaml -------------------------------------------------------------------------------- /.github/workflows/Documentation Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Documentation Deployment.yaml -------------------------------------------------------------------------------- /.github/workflows/Miscellaneous.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Miscellaneous.yaml -------------------------------------------------------------------------------- /.github/workflows/Swift 5.7 (Amazon Linux).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Swift 5.7 (Amazon Linux).yaml -------------------------------------------------------------------------------- /.github/workflows/Swift 5.7 (Ubuntu).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Swift 5.7 (Ubuntu).yaml -------------------------------------------------------------------------------- /.github/workflows/Swift 5.7 (macOS).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Swift 5.7 (macOS).yaml -------------------------------------------------------------------------------- /.github/workflows/Ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Ubuntu.yaml -------------------------------------------------------------------------------- /.github/workflows/Web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Web.yaml -------------------------------------------------------------------------------- /.github/workflows/Windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/Windows.yaml -------------------------------------------------------------------------------- /.github/workflows/iOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/iOS.yaml -------------------------------------------------------------------------------- /.github/workflows/macOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/macOS.yaml -------------------------------------------------------------------------------- /.github/workflows/tvOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/tvOS.yaml -------------------------------------------------------------------------------- /.github/workflows/watchOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.github/workflows/watchOS.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/README.md -------------------------------------------------------------------------------- /Refresh (Linux).sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Refresh (Linux).sh -------------------------------------------------------------------------------- /Refresh (macOS).command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Refresh (macOS).command -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/CustomTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/CustomTask.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/FileHeaderConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/FileHeaderConfiguration.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/GitConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/GitConfiguration.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/GitHub/Contributing Template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/GitHub/Contributing Template.txt -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/GitHub/GitHubConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/GitHub/GitHubConfiguration.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/GitHub/IssueTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/GitHub/IssueTemplate.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/GitHub/Mitwirken Vorlage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/GitHub/Mitwirken Vorlage.txt -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/GitHub/Pull Request Template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/GitHub/Pull Request Template.txt -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/Licence/Licence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/Licence/Licence.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/RepositoryConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/RepositoryConfiguration.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Configuration/WorkspaceConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Configuration/WorkspaceConfiguration.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Context/PackageManifest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Context/PackageManifest.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Context/Platform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Context/Platform.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Context/Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Context/Product.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Context/ProductType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Context/ProductType.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Context/WorkspaceContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Context/WorkspaceContext.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Exports.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/General/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/General/Array.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/General/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/General/Dictionary.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/General/LazyOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/General/LazyOption.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/General/LocalizationIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/General/LocalizationIdentifier.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/General/Markdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/General/Markdown.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Resources.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Resources/Resources 1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Resources/Resources 1.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Resources/Resources 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Resources/Resources 2.swift -------------------------------------------------------------------------------- /Sources/WorkspaceConfiguration/Resources/Resources 3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceConfiguration/Resources/Resources 3.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/CheckForUpdates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/CheckForUpdates.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Document.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Normalize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Normalize.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Options/Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Options/Options.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Proofread/Proofread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Proofread/Proofread.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Proofread/ProofreadProofread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Proofread/ProofreadProofread.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/Refresh.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/Refresh.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshAll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshAll.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshExamples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshExamples.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshFileHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshFileHeaders.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshGit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshGit.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshGitHub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshGitHub.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshLicence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshLicence.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshReadMe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshReadMe.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshResources.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Refresh/RefreshScripts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Refresh/RefreshScripts.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Test.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Validate/Validate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Validate/Validate.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Validate/ValidateAll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Validate/ValidateAll.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Validate/ValidateBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Validate/ValidateBuild.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Validate/ValidateTestCoverage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Validate/ValidateTestCoverage.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Interface/Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Interface/Workspace.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Resources.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Resources/Resources 1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Resources/Resources 1.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Resources/Resources 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Resources/Resources 2.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Resources/Resources 3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Resources/Resources 3.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Resources/Resources 4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Resources/Resources 4.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Resources/Resources 5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Resources/Resources 5.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Resources/Resources 6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Resources/Resources 6.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Resources/Resources 7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Resources/Resources 7.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Custom Tasks/CustomTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Custom Tasks/CustomTask.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Environment/ProcessInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Environment/ProcessInfo.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Parsing/PatternMatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Parsing/PatternMatch.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/BlockCommentSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/BlockCommentSyntax.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/Copyright.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/Copyright.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/FileSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/FileSyntax.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/FileType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/FileType.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/LineCommentSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/LineCommentSyntax.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/OperatingSystem.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/PackageRepository.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/ProductType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/ProductType.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/StringFamily.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/StringFamily.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/TextFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/TextFile.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/Version.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Project/WorkspaceConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Project/WorkspaceConfiguration.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Swift/OperatorTable.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Swift/SwiftLanguage.Casing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Swift/SwiftLanguage.Casing.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Swift/SwiftLanguage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Swift/SwiftLanguage.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Swift/SwiftPMUnavailableError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Swift/SwiftPMUnavailableError.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Validation/Output.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Validation/Output.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Validation/ReportSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Validation/ReportSection.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Shared/Validation/ValidationStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Shared/Validation/ValidationStatus.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/SleeplessMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/SleeplessMain.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Documentation/API/PackageAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Documentation/API/PackageAPI.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Documentation/API/SymbolLike.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Documentation/API/SymbolLike.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Git/PackageRepository + Git.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Git/PackageRepository + Git.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/GitHub/PackageRepository + GitHub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/GitHub/PackageRepository + GitHub.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Licence/Licence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Licence/Licence.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Licence/Licences/Apache 2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Licence/Licences/Apache 2.0.md -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Licence/Licences/Copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Licence/Licences/Copyright.md -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Licence/Licences/MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Licence/Licences/MIT.md -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Licence/Licences/Unlicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Licence/Licences/Unlicense.md -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/ProofreadingReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/ProofreadingReporter.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/ProofreadingStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/ProofreadingStatus.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/Rule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/Rule.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/RuleProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/RuleProtocol.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/Setting.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/StyleViolation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/StyleViolation.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/SyntaxProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/SyntaxProtocol.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/SyntaxRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/SyntaxRule.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/SyntaxScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/SyntaxScanner.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/TextRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/TextRule.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Proofreading/Warning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Proofreading/Warning.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Resources/Resource.Constructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Resources/Resource.Constructor.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Resources/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Resources/Resource.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Scripts/Script.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Scripts/Script.swift -------------------------------------------------------------------------------- /Sources/WorkspaceImplementation/Tasks/Xcode/PackageRepository + Xcode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceImplementation/Tasks/Xcode/PackageRepository + Xcode.swift -------------------------------------------------------------------------------- /Sources/WorkspaceLocalizations/ContentLocalization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceLocalizations/ContentLocalization.swift -------------------------------------------------------------------------------- /Sources/WorkspaceLocalizations/InterfaceLocalization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceLocalizations/InterfaceLocalization.swift -------------------------------------------------------------------------------- /Sources/WorkspaceProjectConfiguration/Copy Sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceProjectConfiguration/Copy Sources.txt -------------------------------------------------------------------------------- /Sources/WorkspaceProjectConfiguration/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceProjectConfiguration/Placeholder.swift -------------------------------------------------------------------------------- /Sources/WorkspaceTool/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Sources/WorkspaceTool/main.swift -------------------------------------------------------------------------------- /Tests/CrossPlatform/CrossPlatform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/CrossPlatform/CrossPlatform.swift -------------------------------------------------------------------------------- /Tests/CrossPlatform/Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/CrossPlatform/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/CrossPlatform/Resources.swift -------------------------------------------------------------------------------- /Tests/CrossPlatform/Resources/Resources 1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/CrossPlatform/Resources/Resources 1.swift -------------------------------------------------------------------------------- /Tests/CrossPlatformC/CrossPlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/CrossPlatformC/CrossPlatform.c -------------------------------------------------------------------------------- /Tests/CrossPlatformC/include/WSCrossPlatformC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/CrossPlatformC/include/WSCrossPlatformC.h -------------------------------------------------------------------------------- /Tests/CrossPlatformTests/CrossPlatformTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/CrossPlatformTests/CrossPlatformTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllDisabled/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllDisabled/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllDisabled/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllDisabled/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllDisabled/README.md: -------------------------------------------------------------------------------- 1 | # AllDisabled 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllDisabled/Sources/AllDisabled/AllDisabled.swift: -------------------------------------------------------------------------------- 1 | struct AllDisabled { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/Amazon Linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/Amazon Linux.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/Android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/Android.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/Miscellaneous.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/Miscellaneous.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/Ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/Ubuntu.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/Web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/Web.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/Windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/Windows.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/iOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/iOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/macOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/macOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/tvOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/tvOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.github/workflows/watchOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.github/workflows/watchOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/LICENSE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/Refresh (Linux).sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/Refresh (Linux).sh -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/Refresh (macOS).command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/Refresh (macOS).command -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/Sources/AllTasks/AllTasks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/Sources/AllTasks/AllTasks.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/AllTasks/Tests/AllTasksTests/AllTasksTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/AllTasks/Tests/AllTasksTests/AllTasksTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/.Workspace Configuration.txt: -------------------------------------------------------------------------------- 1 | (This file should trigger a proofreading warning.) 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BadStyle/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Other/CSS.css: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Other/HTML.html: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Other/JavaScript.js: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BadStyle/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/README.md: -------------------------------------------------------------------------------- 1 | # BadStyle 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Resources/BadStyle/Resource.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/BadStyle/BadStyle.swift: -------------------------------------------------------------------------------- 1 | struct BadStyle { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/BadStyle/Normalization/Decomposition.swift: -------------------------------------------------------------------------------- 1 | // Header 2 | 3 | let é = "ñ" // These should be decomposed. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/BadStyle/Normalization/ShellExecutability.sh: -------------------------------------------------------------------------------- 1 | 2 | echo "This file should remain executable." 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/BadStyle/Rules/Functionality/CompatibilityCharacters.swift: -------------------------------------------------------------------------------- 1 | // Header 2 | 3 | let compatibility = "²" 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/BadStyle/Rules/Functionality/ExplicitTypes.swift: -------------------------------------------------------------------------------- 1 | public var implit = "" // Should trigger; needs explicit type. 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/BadStyle/SwiftFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BadStyle/Sources/BadStyle/SwiftFormat.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/BadStyle/Warnings/Warning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BadStyle/Sources/BadStyle/Warnings/Warning.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/BadStyle/Warnings/Workaround.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BadStyle/Sources/BadStyle/Warnings/Workaround.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/executable/AccessControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BadStyle/Sources/executable/AccessControl.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Sources/executable/main.swift: -------------------------------------------------------------------------------- 1 | print("Hello, world!") 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BadStyle/Tests/BadStyleTests/BadStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BadStyle/Tests/BadStyleTests/BadStyleTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BrokenExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BrokenExample/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BrokenExample/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BrokenExample/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BrokenExample/README.md: -------------------------------------------------------------------------------- 1 | # BrokenExample 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BrokenTests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BrokenTests/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BrokenTests/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/BrokenTests/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/BrokenTests/Sources/BrokenTests/BrokenTests.swift: -------------------------------------------------------------------------------- 1 | struct BrokenTests { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CheckedInDocumentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CheckedInDocumentation/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CheckedInDocumentation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CheckedInDocumentation/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CheckedInDocumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CheckedInDocumentation/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/Deutsch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/Deutsch.txt -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/English.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/English.txt -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/Namespace/Namespaced.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/Resources.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CheckedInDocumentation/Sources/Tool/main.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/ContinuousIntegrationWithoutScripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/ContinuousIntegrationWithoutScripts/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/ContinuousIntegrationWithoutScripts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/ContinuousIntegrationWithoutScripts/LICENSE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/ContinuousIntegrationWithoutScripts/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/ContinuousIntegrationWithoutScripts/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/ContinuousIntegrationWithoutScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/ContinuousIntegrationWithoutScripts/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomProofread/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomProofread/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomProofread/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomProofread/.swiftlint.yml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomProofread/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomProofread/LICENSE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomProofread/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomProofread/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomProofread/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomProofread/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomReadMe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomReadMe/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomReadMe/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomReadMe/LICENSE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomReadMe/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomReadMe/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomReadMe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomReadMe/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomTasks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomTasks/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomTasks/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/CustomTasks/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomTasks/README.md: -------------------------------------------------------------------------------- 1 | # CustomTasks 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/CustomTasks/Sources/CustomTasks/CustomTasks.swift: -------------------------------------------------------------------------------- 1 | struct CustomTasks { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Default/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Default/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Default/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Default/README.md: -------------------------------------------------------------------------------- 1 | # Default 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Default/Refresh (Linux).sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Default/Refresh (Linux).sh -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Default/Refresh (macOS).command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Default/Refresh (macOS).command -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Default/Sources/Default/Default.swift: -------------------------------------------------------------------------------- 1 | struct Default { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Default/Tests/DefaultTests/DefaultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Default/Tests/DefaultTests/DefaultTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/Amazon Linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/Amazon Linux.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/Android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/Android.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/Netz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/Netz.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/Sonstiges.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/Sonstiges.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/Ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/Ubuntu.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/Windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/Windows.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/iOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/iOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/macOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/macOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/tvOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/tvOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.github/workflows/watchOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.github/workflows/watchOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Auffrischen (Linux).sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/Auffrischen (Linux).sh -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Auffrischen (macOS).command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/Auffrischen (macOS).command -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Other/Something.something: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Prüfen (macOS).command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/Prüfen (macOS).command -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Sources/Deutsch/Deutsch.swift: -------------------------------------------------------------------------------- 1 | struct Deutsch { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Sources/werkzeug/Deutsch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/Sources/werkzeug/Deutsch.txt -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Sources/werkzeug/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/Sources/werkzeug/Resources.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Sources/werkzeug/main.swift: -------------------------------------------------------------------------------- 1 | print(Ressourcen.deutsch) 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Deutsch/Tests/DeutschTests/DeutschTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Deutsch/Tests/DeutschTests/DeutschTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Executable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Executable/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Executable/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Executable/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Executable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Executable/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Executable/Sources/Executable/main.swift: -------------------------------------------------------------------------------- 1 | print("Hello, world!") 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingCustomTasks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingCustomTasks/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingCustomTasks/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingCustomTasks/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingCustomTasks/README.md: -------------------------------------------------------------------------------- 1 | # FailingCustomTasks 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingCustomTasks/Sources/FailingCustomTasks/FailingCustomTasks.swift: -------------------------------------------------------------------------------- 1 | struct FailingCustomTasks { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingCustomValidation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingCustomValidation/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingCustomValidation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingCustomValidation/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingCustomValidation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingCustomValidation/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingCustomValidation/Sources/FailingCustomValidation/FailingCustomValidation.swift: -------------------------------------------------------------------------------- 1 | struct FailingCustomValidation { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingDocumentationCoverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingDocumentationCoverage/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingDocumentationCoverage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingDocumentationCoverage/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingDocumentationCoverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingDocumentationCoverage/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingTestCoverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingTestCoverage/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingTestCoverage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingTestCoverage/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingTests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingTests/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingTests/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/FailingTests/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingTests/README.md: -------------------------------------------------------------------------------- 1 | # FailingTests 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/FailingTests/Sources/FailingTests/Exempt/Exempt.swift: -------------------------------------------------------------------------------- 1 | func exempt() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Other/HTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Other/HTML.html -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Other/Lisp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Other/Lisp.el -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Other/Python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Other/Python.py -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Other/Ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Other/Ruby.rb -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Other/Stencil.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Other/Stencil.stencil -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Sources/Headers/Block.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Sources/Headers/Block.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Sources/Headers/BlockExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Sources/Headers/BlockExample.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Sources/Headers/Documentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Sources/Headers/Documentation.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Sources/Headers/EmptyBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Sources/Headers/EmptyBlock.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Sources/Headers/LineDocumentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Sources/Headers/LineDocumentation.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/Headers/Tests/HeadersTests/HeadersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/Headers/Tests/HeadersTests/HeadersTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingDocumentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MissingDocumentation/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingDocumentation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MissingDocumentation/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingDocumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MissingDocumentation/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MissingExample/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingExample/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MissingExample/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingExample/README.md: -------------------------------------------------------------------------------- 1 | # MissingExample 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingReadMeLocalization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MissingReadMeLocalization/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingReadMeLocalization/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MissingReadMeLocalization/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingReadMeLocalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MissingReadMeLocalization/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MissingReadMeLocalization/Sources/MissingReadMeLocalization/MissingReadMeLocalization.swift: -------------------------------------------------------------------------------- 1 | struct MissingReadMeLocalization { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MultipleProducts/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MultipleProducts/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/MultipleProducts/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/Sources/ModuleA/Module.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/Sources/ModuleB/Module.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/Sources/ModuleC/Module.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/Sources/ModuleD/Module.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/Sources/executable‐a/main.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/MultipleProducts/Sources/executable‐b/main.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoLibraries/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NoLibraries/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoLibraries/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NoLibraries/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoLibraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NoLibraries/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoLibraries/Sources/NoLibraries/NoLibraries.swift: -------------------------------------------------------------------------------- 1 | struct NoLibraries { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoLocalizations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NoLocalizations/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoLocalizations/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NoLocalizations/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoLocalizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NoLocalizations/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoLocalizations/Sources/NoLocalizations/NoLocalizations.swift: -------------------------------------------------------------------------------- 1 | struct NoLocalizations { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoXcodeProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NoXcodeProject/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NoXcodeProject/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NoXcodeProject/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NurDeutsch/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NurDeutsch/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NurDeutsch/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NurDeutsch/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NurDeutsch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NurDeutsch/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NurDeutsch/Etwas.etwas: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NurDeutsch/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NurDeutsch/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/NurDeutsch/Sources/NurDeutsch/NurDeutsch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/NurDeutsch/Sources/NurDeutsch/NurDeutsch.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneLocalization/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OneLocalization/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneLocalization/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OneLocalization/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneLocalization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OneLocalization/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneLocalization/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OneLocalization/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneLocalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OneLocalization/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneLocalization/Sources/OneLocalization/OneLocalization.swift: -------------------------------------------------------------------------------- 1 | struct OneLocalization { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneProductMultipleModules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OneProductMultipleModules/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneProductMultipleModules/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OneProductMultipleModules/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OneProductMultipleModules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OneProductMultipleModules/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OnlyBritish/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OnlyBritish/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OnlyBritish/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OnlyBritish/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OnlyBritish/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OnlyBritish/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OnlyBritish/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/OnlyBritish/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/OnlyBritish/Sources/OnlyBritish/OnlyBritish.swift: -------------------------------------------------------------------------------- 1 | struct OnlyBritish { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/PartialReadMe/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/PartialReadMe/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/PartialReadMe/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/PartialReadMe/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/PartialReadMe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/PartialReadMe/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/PartialReadMe/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/PartialReadMe/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/PartialReadMe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/PartialReadMe/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/PartialReadMe/Sources/PartialReadMe/PartialReadMe.swift: -------------------------------------------------------------------------------- 1 | struct PartialReadMe { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/ISSUE_TEMPLATE/🇩🇪DE Frage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/ISSUE_TEMPLATE/🇩🇪DE Frage.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/Amazon Linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/Amazon Linux.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/Android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/Android.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/Miscellaneous.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/Miscellaneous.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/Ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/Ubuntu.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/Web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/Web.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/Windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/Windows.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/iOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/iOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/macOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/macOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/tvOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/tvOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.github/workflows/watchOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.github/workflows/watchOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/LICENSE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Other/GeneratedData.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Other/Unsupported Filetype.xyz: -------------------------------------------------------------------------------- 1 | #| 2 | Header 3 | |# 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Refresh (Linux).sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/Refresh (Linux).sh -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Refresh (macOS).command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/Refresh (macOS).command -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Sources/Library/(Named with) Punctuation!.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Sources/Library/2001‐01‐01 (Named with Numbers).txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Sources/Library/Namespace/Data Resource: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Sources/Library/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/Sources/Library/Resources.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Sources/Library/SDG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/Sources/Library/SDG.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Sources/Library/Text Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Tests/SDGTests/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/Tests/SDGTests/Resources.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Tests/SDGTests/SDGTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGLibrary/Tests/SDGTests/SDGTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGLibrary/Tests/SDGTests/Text Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇨🇦EN Bug Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇨🇦EN Bug Report.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇨🇦EN Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇨🇦EN Question.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇩🇪DE Frage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇩🇪DE Frage.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇬🇧EN Bug Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇬🇧EN Bug Report.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇬🇧EN Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇬🇧EN Question.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇺🇸EN Bug Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇺🇸EN Bug Report.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇺🇸EN Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/ISSUE_TEMPLATE/🇺🇸EN Question.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/workflows/Amazon Linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/workflows/Amazon Linux.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/workflows/Android.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/workflows/Android.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/workflows/Miscellaneous.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/workflows/Miscellaneous.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/workflows/Ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/workflows/Ubuntu.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/workflows/Web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/workflows/Web.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/workflows/Windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/workflows/Windows.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.github/workflows/macOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.github/workflows/macOS.yaml -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/LICENSE.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Refresh (Linux).sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Refresh (Linux).sh -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Refresh (macOS).command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Refresh (macOS).command -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/(Named with) Punctuation!.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/2001‐01‐01 (Named with Numbers).txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/Namespace/Data Resource: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Sources/Library/Resources.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/Resources/Resources 1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Sources/Library/Resources/Resources 1.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/Resources/Resources 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Sources/Library/Resources/Resources 2.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/Resources/Resources 3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Sources/Library/Resources/Resources 3.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/Resources/Resources 4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Sources/Library/Resources/Resources 4.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/SDG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Sources/Library/SDG.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/Library/Text Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Sources/tool/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Sources/tool/main.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Tests/SDGTests/SDGTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Tests/SDGTests/SDGTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Tests/test‐tool/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Tests/test‐tool/Resources.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Tests/test‐tool/Resources/Resources 1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Tests/test‐tool/Resources/Resources 1.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Tests/test‐tool/Text Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/After/SDGTool/Tests/test‐tool/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/After/SDGTool/Tests/test‐tool/main.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllDisabled/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/AllDisabled/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllDisabled/README.md: -------------------------------------------------------------------------------- 1 | # AllDisabled 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllDisabled/Sources/AllDisabled/AllDisabled.swift: -------------------------------------------------------------------------------- 1 | struct AllDisabled { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllDisabled/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/AllDisabled/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllTasks/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/AllTasks/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllTasks/README.md: -------------------------------------------------------------------------------- 1 | # AllTasks 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllTasks/Sources/AllTasks/AllTasks.swift: -------------------------------------------------------------------------------- 1 | struct AllTasks { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllTasks/Tests/AllTasksTests/AllTasksTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/AllTasks/Tests/AllTasksTests/AllTasksTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/AllTasks/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/.Workspace Configuration.txt: -------------------------------------------------------------------------------- 1 | (This file should trigger a proofreading warning.) 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BadStyle/.gitignore -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Other/CSS.css: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Other/HTML.html: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Other/JavaScript.js: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BadStyle/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/README.md: -------------------------------------------------------------------------------- 1 | # BadStyle 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Resources/BadStyle/Resource.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/BadStyle.swift: -------------------------------------------------------------------------------- 1 | struct BadStyle { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/Normalization/Decomposition.swift: -------------------------------------------------------------------------------- 1 | // Header 2 | 3 | let é = "ñ" // These should be decomposed. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/Normalization/ShellExecutability.sh: -------------------------------------------------------------------------------- 1 | 2 | echo "This file should remain executable." 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/Rules/Functionality/CompatibilityCharacters.swift: -------------------------------------------------------------------------------- 1 | // Header 2 | 3 | let compatibility = "²" 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/Rules/Functionality/ExplicitTypes.swift: -------------------------------------------------------------------------------- 1 | public var implit = "" // Should trigger; needs explicit type. 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/SwiftFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/SwiftFormat.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/Warnings/Warning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BadStyle/Sources/BadStyle/Warnings/Warning.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/executable/AccessControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BadStyle/Sources/executable/AccessControl.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Sources/executable/main.swift: -------------------------------------------------------------------------------- 1 | print("Hello, world!") 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BadStyle/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BadStyle/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BrokenExample/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BrokenExample/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BrokenExample/README.md: -------------------------------------------------------------------------------- 1 | # BrokenExample 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BrokenExample/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BrokenExample/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BrokenTests/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BrokenTests/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BrokenTests/Sources/BrokenTests/BrokenTests.swift: -------------------------------------------------------------------------------- 1 | struct BrokenTests { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/BrokenTests/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/BrokenTests/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CheckedInDocumentation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CheckedInDocumentation/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CheckedInDocumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CheckedInDocumentation/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CheckedInDocumentation/Sources/Tool/Deutsch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CheckedInDocumentation/Sources/Tool/Deutsch.txt -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CheckedInDocumentation/Sources/Tool/English.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CheckedInDocumentation/Sources/Tool/English.txt -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CheckedInDocumentation/Sources/Tool/Namespace/Namespaced.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CheckedInDocumentation/Sources/Tool/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CheckedInDocumentation/Sources/Tool/main.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CheckedInDocumentation/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CheckedInDocumentation/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/ContinuousIntegrationWithoutScripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/ContinuousIntegrationWithoutScripts/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomProofread/.swiftlint.yml: -------------------------------------------------------------------------------- 1 | excluded: 2 | - Some/Path 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomProofread/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CustomProofread/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomProofread/README.md: -------------------------------------------------------------------------------- 1 | # CustomSwiftLint 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomReadMe/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CustomReadMe/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomReadMe/README.md: -------------------------------------------------------------------------------- 1 | # CustomReadMe 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomReadMe/Sources/CustomReadMe/CustomReadMe.swift: -------------------------------------------------------------------------------- 1 | struct CustomReadMe { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomReadMe/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CustomReadMe/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomTasks/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CustomTasks/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomTasks/README.md: -------------------------------------------------------------------------------- 1 | # CustomTasks 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomTasks/Sources/CustomTasks/CustomTasks.swift: -------------------------------------------------------------------------------- 1 | struct CustomTasks { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/CustomTasks/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/CustomTasks/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Default/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Default/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Default/README.md: -------------------------------------------------------------------------------- 1 | # Default 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Default/Sources/Default/Default.swift: -------------------------------------------------------------------------------- 1 | struct Default { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Default/Tests/DefaultTests/DefaultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Default/Tests/DefaultTests/DefaultTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Default/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Default/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Deutsch/Other/Something.something: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Deutsch/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Deutsch/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Deutsch/Sources/Deutsch/Deutsch.swift: -------------------------------------------------------------------------------- 1 | struct Deutsch { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Deutsch/Sources/werkzeug/Deutsch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Deutsch/Sources/werkzeug/Deutsch.txt -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Deutsch/Sources/werkzeug/main.swift: -------------------------------------------------------------------------------- 1 | print(Ressourcen.deutsch) 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Deutsch/Tests/DeutschTests/DeutschTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Deutsch/Tests/DeutschTests/DeutschTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Deutsch/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Deutsch/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Executable/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Executable/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Executable/README.md: -------------------------------------------------------------------------------- 1 | # ExecutableProjectType 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Executable/Sources/Executable/main.swift: -------------------------------------------------------------------------------- 1 | print("Hello, world!") 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingCustomTasks/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingCustomTasks/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingCustomTasks/README.md: -------------------------------------------------------------------------------- 1 | # FailingCustomTasks 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingCustomTasks/Sources/FailingCustomTasks/FailingCustomTasks.swift: -------------------------------------------------------------------------------- 1 | struct FailingCustomTasks { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingCustomTasks/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingCustomTasks/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingCustomValidation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingCustomValidation/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingCustomValidation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingCustomValidation/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingCustomValidation/Sources/FailingCustomValidation/FailingCustomValidation.swift: -------------------------------------------------------------------------------- 1 | struct FailingCustomValidation { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingCustomValidation/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingCustomValidation/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingDocumentationCoverage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingDocumentationCoverage/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingDocumentationCoverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingDocumentationCoverage/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingTestCoverage/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingTestCoverage/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingTests/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingTests/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingTests/README.md: -------------------------------------------------------------------------------- 1 | # FailingTests 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingTests/Sources/FailingTests/Exempt/Exempt.swift: -------------------------------------------------------------------------------- 1 | func exempt() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/FailingTests/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/FailingTests/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Other/HTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Headers/Other/HTML.html -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Other/Lisp.el: -------------------------------------------------------------------------------- 1 | #| 2 | Header 3 | |# 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Other/Python.py: -------------------------------------------------------------------------------- 1 | #!... 2 | 3 | # Header 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Other/Ruby.rb: -------------------------------------------------------------------------------- 1 | # Header 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Other/Stencil.stencil: -------------------------------------------------------------------------------- 1 | {# 2 | Header 3 | #} 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Headers/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/README.md: -------------------------------------------------------------------------------- 1 | # Headers 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Sources/Headers/Block.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Headers/Sources/Headers/Block.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Sources/Headers/BlockExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Headers/Sources/Headers/BlockExample.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Sources/Headers/Documentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Headers/Sources/Headers/Documentation.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Sources/Headers/EmptyBlock.swift: -------------------------------------------------------------------------------- 1 | /* */ 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Sources/Headers/LineDocumentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Headers/Sources/Headers/LineDocumentation.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Tests/HeadersTests/HeadersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Headers/Tests/HeadersTests/HeadersTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/Headers/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/Headers/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingDocumentation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MissingDocumentation/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingDocumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MissingDocumentation/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingDocumentation/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MissingDocumentation/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingExample/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MissingExample/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingExample/README.md: -------------------------------------------------------------------------------- 1 | # MissingExample 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingExample/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MissingExample/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingReadMeLocalization/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MissingReadMeLocalization/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingReadMeLocalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MissingReadMeLocalization/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingReadMeLocalization/Sources/MissingReadMeLocalization/MissingReadMeLocalization.swift: -------------------------------------------------------------------------------- 1 | struct MissingReadMeLocalization { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MissingReadMeLocalization/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MissingReadMeLocalization/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MultipleProducts/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/MultipleProducts/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MultipleProducts/README.md: -------------------------------------------------------------------------------- 1 | # MultipleProducts 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MultipleProducts/Sources/ModuleA/Module.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MultipleProducts/Sources/ModuleB/Module.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MultipleProducts/Sources/ModuleC/Module.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MultipleProducts/Sources/ModuleD/Module.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MultipleProducts/Sources/executable‐a/main.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/MultipleProducts/Sources/executable‐b/main.swift: -------------------------------------------------------------------------------- 1 | 2 | func doStuff() {} 3 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoLibraries/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NoLibraries/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoLibraries/README.md: -------------------------------------------------------------------------------- 1 | # NoLibraries 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoLibraries/Sources/NoLibraries/NoLibraries.swift: -------------------------------------------------------------------------------- 1 | struct NoLibraries { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoLibraries/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NoLibraries/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoLocalizations/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NoLocalizations/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoLocalizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NoLocalizations/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoLocalizations/Sources/NoLocalizations/NoLocalizations.swift: -------------------------------------------------------------------------------- 1 | struct NoLocalizations { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoLocalizations/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NoLocalizations/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoXcodeProject/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NoXcodeProject/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NoXcodeProject/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NoXcodeProject/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NurDeutsch/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NurDeutsch/Etwas.etwas: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NurDeutsch/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NurDeutsch/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NurDeutsch/Sources/NurDeutsch/NurDeutsch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NurDeutsch/Sources/NurDeutsch/NurDeutsch.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/NurDeutsch/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/NurDeutsch/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OneLocalization/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OneLocalization/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/OneLocalization/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OneLocalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/OneLocalization/README.md -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OneLocalization/Sources/OneLocalization/OneLocalization.swift: -------------------------------------------------------------------------------- 1 | struct OneLocalization { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OneLocalization/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/OneLocalization/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OneProductMultipleModules/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/OneProductMultipleModules/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OneProductMultipleModules/README.md: -------------------------------------------------------------------------------- 1 | # OneProductMultipleModules 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OnlyBritish/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OnlyBritish/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/OnlyBritish/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OnlyBritish/Sources/OnlyBritish/OnlyBritish.swift: -------------------------------------------------------------------------------- 1 | struct OnlyBritish { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/OnlyBritish/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/OnlyBritish/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/PartialReadMe/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/PartialReadMe/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/PartialReadMe/README.md: -------------------------------------------------------------------------------- 1 | # PartialReadMe 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/PartialReadMe/Sources/PartialReadMe/PartialReadMe.swift: -------------------------------------------------------------------------------- 1 | struct PartialReadMe { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/PartialReadMe/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/PartialReadMe/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Other/GeneratedData.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Other/Unsupported Filetype.xyz: -------------------------------------------------------------------------------- 1 | #| 2 | Header 3 | |# 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/SDGLibrary/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/README.md: -------------------------------------------------------------------------------- 1 | # SDG 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Sources/Library/(Named with) Punctuation!.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Sources/Library/2001‐01‐01 (Named with Numbers).txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Sources/Library/Namespace/Data Resource: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Sources/Library/Resources.swift: -------------------------------------------------------------------------------- 1 | // Header 2 | 3 | import Foundation 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Sources/Library/SDG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/SDGLibrary/Sources/Library/SDG.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Sources/Library/Text Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Tests/SDGTests/Resources.swift: -------------------------------------------------------------------------------- 1 | // Header 2 | 3 | import Foundation 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Tests/SDGTests/SDGTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/SDGLibrary/Tests/SDGTests/SDGTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGLibrary/Tests/SDGTests/Text Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/SDGTool/Package.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/README.md: -------------------------------------------------------------------------------- 1 | # SDG 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Sources/Library/(Named with) Punctuation!.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Sources/Library/2001‐01‐01 (Named with Numbers).txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Sources/Library/Namespace/Data Resource: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Sources/Library/Resources.swift: -------------------------------------------------------------------------------- 1 | // Header 2 | 3 | import Foundation 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Sources/Library/SDG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/SDGTool/Sources/Library/SDG.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Sources/Library/Text Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Sources/tool/main.swift: -------------------------------------------------------------------------------- 1 | print("Hello, world!") 2 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Tests/SDGTests/SDGTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Mock Projects/Before/SDGTool/Tests/SDGTests/SDGTests.swift -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Tests/test‐tool/Resources.swift: -------------------------------------------------------------------------------- 1 | // Header 2 | 3 | import Foundation 4 | -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Tests/test‐tool/Text Resource.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /Tests/Mock Projects/Before/SDGTool/Tests/test‐tool/main.swift: -------------------------------------------------------------------------------- 1 | print("Hello, world!") 2 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Android.txt: -------------------------------------------------------------------------------- 1 | Android -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllDisabled (refresh)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllDisabled (refresh)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllDisabled (refresh)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllDisabled (refresh)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllDisabled (refresh)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllDisabled (refresh)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllDisabled (refresh)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllDisabled (refresh)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllDisabled (validate)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllDisabled (validate)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllDisabled (validate)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllDisabled (validate)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllDisabled (validate)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllDisabled (validate)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllDisabled (validate)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllDisabled (validate)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllTasks (refresh)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllTasks (refresh)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/AllTasks (validate)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/AllTasks (validate)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BadStyle (proofread •xcode)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BadStyle (proofread •xcode)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BadStyle (proofread •xcode)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BadStyle (proofread •xcode)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BadStyle (proofread •xcode)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BadStyle (proofread •xcode)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BadStyle (proofread •xcode)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BadStyle (proofread •xcode)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BadStyle (proofread)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BadStyle (proofread)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BadStyle (proofread)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BadStyle (proofread)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BadStyle (proofread)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BadStyle (proofread)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BadStyle (proofread)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BadStyle (proofread)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/BrokenTests (test)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/BrokenTests (test)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/ContinuousIntegrationWithoutScripts (refresh licence)/🇩🇪DE.txt: -------------------------------------------------------------------------------- 1 | $ arbeitsbereich refresh licence •no‐colour 2 | 3 | Lizenz wird aufgefrischt ... 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomProofread (proofread)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomProofread (proofread)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomTasks (refresh)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomTasks (refresh)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomTasks (refresh)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomTasks (refresh)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomTasks (refresh)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomTasks (refresh)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomTasks (refresh)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomTasks (refresh)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomTasks (validate)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomTasks (validate)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomTasks (validate)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomTasks (validate)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomTasks (validate)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomTasks (validate)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/CustomTasks (validate)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/CustomTasks (validate)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (normalize)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (normalize)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (proofread •xcode)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (proofread •xcode)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (proofread)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (proofread)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (refresh examples)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (refresh examples)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (refresh resources)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (refresh resources)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (refresh scripts)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (refresh scripts)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (refresh)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (refresh)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (test)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (test)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (validate build)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (validate build)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (validate •job macos)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (validate •job macos)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Default (validate)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Default (validate)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (auffrischen git)/🇨🇦EN.txt: -------------------------------------------------------------------------------- 1 | $ workspace auffrischen git •no‐colour 2 | 3 | Refreshing Git configuration... 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (auffrischen git)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (auffrischen git)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (auffrischen git)/🇬🇧EN.txt: -------------------------------------------------------------------------------- 1 | $ workspace auffrischen git •no‐colour 2 | 3 | Refreshing Git configuration... 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (auffrischen git)/🇺🇸EN.txt: -------------------------------------------------------------------------------- 1 | $ workspace auffrischen git •no‐colour 2 | 3 | Refreshing Git configuration... 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (auffrischen skripte)/🇨🇦EN.txt: -------------------------------------------------------------------------------- 1 | $ workspace auffrischen skripte •no‐colour 2 | 3 | Refreshing scripts... 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (auffrischen skripte)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (auffrischen skripte)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (auffrischen skripte)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (auffrischen skripte)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (auffrischen skripte)/🇺🇸EN.txt: -------------------------------------------------------------------------------- 1 | $ workspace auffrischen skripte •no‐colour 2 | 3 | Refreshing scripts... 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (dokumentieren)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (dokumentieren)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (dokumentieren)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (dokumentieren)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (dokumentieren)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (dokumentieren)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (dokumentieren)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (dokumentieren)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (normalisieren)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (normalisieren)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (normalisieren)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (normalisieren)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (normalisieren)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (normalisieren)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (normalisieren)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (normalisieren)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (prüfen erstellung)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (prüfen erstellung)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (prüfen erstellung)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (prüfen erstellung)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (prüfen erstellung)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (prüfen erstellung)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Deutsch (prüfen erstellung)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Deutsch (prüfen erstellung)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (document)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (document)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (document)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (document)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (document)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (document)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (document)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (document)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (refresh licence)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (refresh licence)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (refresh licence)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (refresh licence)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (refresh licence)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (refresh licence)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (refresh licence)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (refresh licence)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (refresh read‐me)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (refresh read‐me)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (refresh read‐me)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (refresh read‐me)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (refresh read‐me)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (refresh read‐me)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Executable (refresh read‐me)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Executable (refresh read‐me)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/FailingCustomTasks (refresh)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/FailingCustomTasks (refresh)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/FailingTests (validate build •job miscellaneous)/🇩🇪DE.txt: -------------------------------------------------------------------------------- 1 | $ arbeitsbereich validate build •job miscellaneous •no‐colour 2 | Ungültige Aufgabe. 3 | 9223372036854775807 4 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/FailingTests (validate build)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/FailingTests (validate build)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/FailingTests (validate build)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/FailingTests (validate build)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/FailingTests (validate build)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/FailingTests (validate build)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/FailingTests (validate build)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/FailingTests (validate build)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Headers (refresh examples)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Headers (refresh examples)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Headers (test)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Headers (test)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace document)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace document)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace document)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace document)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace document)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace document)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace document)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace document)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace normalize)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace normalize)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace normalize)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace normalize)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace normalize)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace normalize)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace normalize)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace normalize)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace proofread)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace proofread)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace proofread)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace proofread)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace proofread)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace proofread)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace proofread)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace proofread)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace refresh)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace refresh)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace refresh)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace refresh)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace refresh)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace refresh)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace refresh)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace refresh)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace validate)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace validate)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace validate)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace validate)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace validate)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace validate)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace validate)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace validate)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/Help (workspace)/🇺🇸EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/Help (workspace)/🇺🇸EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/NoLibraries (refresh read‐me)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/NoLibraries (refresh read‐me)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/NurDeutsch (korrekturlesen)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/NurDeutsch (korrekturlesen)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/NurDeutsch (normalisieren)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/NurDeutsch (normalisieren)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/NurDeutsch (testen)/🇩🇪DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/NurDeutsch (testen)/🇩🇪DE.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/OnlyBritish (normalize)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/OnlyBritish (normalize)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/OnlyBritish (refresh github)/🇬🇧EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/OnlyBritish (refresh github)/🇬🇧EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/PartialReadMe (document)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/PartialReadMe (document)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (normalize)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (normalize)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (proofread •xcode)/🇨🇦EN.txt: -------------------------------------------------------------------------------- 1 | $ workspace proofread •xcode •no‐colour 2 | 0 3 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (proofread)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (proofread)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (refresh examples)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (refresh examples)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (refresh git)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (refresh git)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (refresh github)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (refresh github)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (refresh licence)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (refresh licence)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (refresh read‐me)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (refresh read‐me)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (refresh scripts)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (refresh scripts)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (test)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (test)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (validate build)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (validate build)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGLibrary (validate)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGLibrary (validate)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (normalize)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (normalize)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (proofread •xcode)/🇨🇦EN.txt: -------------------------------------------------------------------------------- 1 | $ workspace proofread •xcode •no‐colour 2 | 0 3 | -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (proofread)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (proofread)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (refresh examples)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (refresh examples)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (refresh git)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (refresh git)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (refresh github)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (refresh github)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (refresh licence)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (refresh licence)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (refresh read‐me)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (refresh read‐me)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (refresh resources)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (refresh resources)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (refresh scripts)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (refresh scripts)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (test)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (test)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/Test Specifications/Command/SDGTool (validate build)/🇨🇦EN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/Test Specifications/Command/SDGTool (validate build)/🇨🇦EN.txt -------------------------------------------------------------------------------- /Tests/WorkspaceConfigurationExample/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceConfigurationExample/main.swift -------------------------------------------------------------------------------- /Tests/WorkspaceConfigurationTests/APITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceConfigurationTests/APITests.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/APITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/APITests.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/FastTestLocalization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/FastTestLocalization.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/InternalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/InternalTests.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/MockCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/MockCommand.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/MockProject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/MockProject.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/NurDeutsch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/NurDeutsch.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/OnlyBritish.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/OnlyBritish.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/RepositoryRoot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/RepositoryRoot.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/Test Helpers/Command.Output.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/Test Helpers/Command.Output.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/Test Helpers/CustomTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/Test Helpers/CustomTask.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/Test Helpers/PackageRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/Test Helpers/PackageRepository.swift -------------------------------------------------------------------------------- /Tests/WorkspaceTests/Test Helpers/ProcessInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/WorkspaceTests/Test Helpers/ProcessInfo.swift -------------------------------------------------------------------------------- /Tests/cross_platform_tool/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Tests/cross_platform_tool/main.swift -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDGGiesbrecht/Workspace/HEAD/Workspace.swift --------------------------------------------------------------------------------