diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 971a1ea25..26aff4848 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -53,6 +53,5 @@ jobs: name: Soundness uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main with: - license_header_check_enabled: false # feature: https://github.com/swiftlang/github-workflows/issues/78 license_header_check_project_name: "Swift Argument Parser" # bug: https://github.com/swiftlang/github-workflows/issues/76 shell_check_enabled: false # bug: https://github.com/apple/swift-argument-parser/issues/703 diff --git a/.license_header_template b/.license_header_template new file mode 100644 index 000000000..ad98cea3d --- /dev/null +++ b/.license_header_template @@ -0,0 +1,10 @@ +@@===----------------------------------------------------------------------===@@ +@@ +@@ This source file is part of the Swift Argument Parser open source project +@@ +@@ Copyright (c) YEARS Apple Inc. and the Swift project authors +@@ Licensed under Apache License v2.0 with Runtime Library Exception +@@ +@@ See https://swift.org/LICENSE.txt for license information +@@ +@@===----------------------------------------------------------------------===@@ diff --git a/.licenseignore b/.licenseignore new file mode 100644 index 000000000..aadec0564 --- /dev/null +++ b/.licenseignore @@ -0,0 +1,29 @@ +.gitignore +**/.gitignore +.licenseignore +.gitattributes +.git-blame-ignore-revs +.mailfilter +.mailmap +.spi.yml +.swift-format +.editorconfig +.github/* +*.md +*.mdoc +*.txt +*.yml +*.yaml +*.json +*.png +*.bash +*.cmake +*.cmake.in +Package.swift +**/Package.swift +Package@*.swift +**/Package@*.swift +Package.resolved +**/Package.resolved +.unacceptablelanguageignore +**/Snapshots/* diff --git a/Examples/color/Color.swift b/Examples/color/Color.swift index 2d7aee41a..4a4ba4334 100644 --- a/Examples/color/Color.swift +++ b/Examples/color/Color.swift @@ -1,12 +1,11 @@ //===----------------------------------------------------------------------===// // -// This source file is part of the Swift.org open source project +// This source file is part of the Swift Argument Parser open source project // // Copyright (c) 2024 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information -// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// diff --git a/Examples/count-lines/CountLines.swift b/Examples/count-lines/CountLines.swift index 1b25407a3..3a9004755 100644 --- a/Examples/count-lines/CountLines.swift +++ b/Examples/count-lines/CountLines.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Examples/math/Math.swift b/Examples/math/Math.swift index 9703a5af5..168f11458 100644 --- a/Examples/math/Math.swift +++ b/Examples/math/Math.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Examples/repeat/Repeat.swift b/Examples/repeat/Repeat.swift index 1723c67fd..ac34dd361 100644 --- a/Examples/repeat/Repeat.swift +++ b/Examples/repeat/Repeat.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Examples/roll/SplitMix64.swift b/Examples/roll/SplitMix64.swift index c10d7dbcb..460e4013e 100644 --- a/Examples/roll/SplitMix64.swift +++ b/Examples/roll/SplitMix64.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Examples/roll/main.swift b/Examples/roll/main.swift index 63148ea21..e767b12af 100644 --- a/Examples/roll/main.swift +++ b/Examples/roll/main.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Package.swift b/Package.swift index 09b4f89ae..a27eaa221 100644 --- a/Package.swift +++ b/Package.swift @@ -1,5 +1,5 @@ // swift-tools-version:5.7 -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Package@swift-5.8.swift b/Package@swift-5.8.swift index 1a9ffaeb7..4306ab956 100644 --- a/Package@swift-5.8.swift +++ b/Package@swift-5.8.swift @@ -1,5 +1,5 @@ // swift-tools-version:5.8 -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Plugins/GenerateDoccReference/GenerateDoccReference.swift b/Plugins/GenerateDoccReference/GenerateDoccReference.swift index 450e36769..52980e109 100644 --- a/Plugins/GenerateDoccReference/GenerateDoccReference.swift +++ b/Plugins/GenerateDoccReference/GenerateDoccReference.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Plugins/GenerateDoccReference/GenerateDoccReferenceError.swift b/Plugins/GenerateDoccReference/GenerateDoccReferenceError.swift index a89d73609..b05aef6e5 100644 --- a/Plugins/GenerateDoccReference/GenerateDoccReferenceError.swift +++ b/Plugins/GenerateDoccReference/GenerateDoccReferenceError.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Plugins/GenerateDoccReference/PackagePlugin+Helpers.swift b/Plugins/GenerateDoccReference/PackagePlugin+Helpers.swift index 665b8e034..9db6fa533 100644 --- a/Plugins/GenerateDoccReference/PackagePlugin+Helpers.swift +++ b/Plugins/GenerateDoccReference/PackagePlugin+Helpers.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Plugins/GenerateManual/GenerateManualPlugin.swift b/Plugins/GenerateManual/GenerateManualPlugin.swift index abb859976..4d4652551 100644 --- a/Plugins/GenerateManual/GenerateManualPlugin.swift +++ b/Plugins/GenerateManual/GenerateManualPlugin.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Plugins/GenerateManual/GenerateManualPluginError.swift b/Plugins/GenerateManual/GenerateManualPluginError.swift index 43138d2b7..2e271928c 100644 --- a/Plugins/GenerateManual/GenerateManualPluginError.swift +++ b/Plugins/GenerateManual/GenerateManualPluginError.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Plugins/GenerateManual/PackagePlugin+Helpers.swift b/Plugins/GenerateManual/PackagePlugin+Helpers.swift index 06e51c50b..eb24675e0 100644 --- a/Plugins/GenerateManual/PackagePlugin+Helpers.swift +++ b/Plugins/GenerateManual/PackagePlugin+Helpers.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Scripts/format.sh b/Scripts/format.sh index 5ff639e6f..8d8d09638 100755 --- a/Scripts/format.sh +++ b/Scripts/format.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ##===----------------------------------------------------------------------===## ## ## This source file is part of the Swift Argument Parser open source project diff --git a/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift b/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift index f89c2ec1d..b3268cb89 100644 --- a/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift +++ b/Sources/ArgumentParser/Completions/BashCompletionsGenerator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Completions/CompletionsGenerator.swift b/Sources/ArgumentParser/Completions/CompletionsGenerator.swift index f5e41f540..d52fca856 100644 --- a/Sources/ArgumentParser/Completions/CompletionsGenerator.swift +++ b/Sources/ArgumentParser/Completions/CompletionsGenerator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift b/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift index 7f0c07beb..3054187b7 100644 --- a/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift +++ b/Sources/ArgumentParser/Completions/FishCompletionsGenerator.swift @@ -1,3 +1,14 @@ +//===----------------------------------------------------------------------===// +// +// This source file is part of the Swift Argument Parser open source project +// +// Copyright (c) 2020 Apple Inc. and the Swift project authors +// Licensed under Apache License v2.0 with Runtime Library Exception +// +// See https://swift.org/LICENSE.txt for license information +// +//===----------------------------------------------------------------------===// + struct FishCompletionsGenerator { static func generateCompletionScript(_ type: ParsableCommand.Type) -> String { let programName = type._commandName diff --git a/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift b/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift index 9807a2bea..826af9d2b 100644 --- a/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift +++ b/Sources/ArgumentParser/Completions/ZshCompletionsGenerator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/Argument.swift b/Sources/ArgumentParser/Parsable Properties/Argument.swift index c1f5e64fb..c513af6e7 100644 --- a/Sources/ArgumentParser/Parsable Properties/Argument.swift +++ b/Sources/ArgumentParser/Parsable Properties/Argument.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/ArgumentDiscussion.swift b/Sources/ArgumentParser/Parsable Properties/ArgumentDiscussion.swift index 9c4272822..00101c47b 100644 --- a/Sources/ArgumentParser/Parsable Properties/ArgumentDiscussion.swift +++ b/Sources/ArgumentParser/Parsable Properties/ArgumentDiscussion.swift @@ -1,12 +1,11 @@ //===----------------------------------------------------------------------===// // -// This source file is part of the Swift.org open source project +// This source file is part of the Swift Argument Parser open source project // // Copyright (c) 2024 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information -// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// diff --git a/Sources/ArgumentParser/Parsable Properties/ArgumentHelp.swift b/Sources/ArgumentParser/Parsable Properties/ArgumentHelp.swift index aef1f8c69..3f748b54f 100644 --- a/Sources/ArgumentParser/Parsable Properties/ArgumentHelp.swift +++ b/Sources/ArgumentParser/Parsable Properties/ArgumentHelp.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift b/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift index fcf06e2a1..0eb4872d1 100644 --- a/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift +++ b/Sources/ArgumentParser/Parsable Properties/ArgumentVisibility.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/CompletionKind.swift b/Sources/ArgumentParser/Parsable Properties/CompletionKind.swift index 5b478d021..e74f33945 100644 --- a/Sources/ArgumentParser/Parsable Properties/CompletionKind.swift +++ b/Sources/ArgumentParser/Parsable Properties/CompletionKind.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/Errors.swift b/Sources/ArgumentParser/Parsable Properties/Errors.swift index a779809d3..86c62c64f 100644 --- a/Sources/ArgumentParser/Parsable Properties/Errors.swift +++ b/Sources/ArgumentParser/Parsable Properties/Errors.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/Flag.swift b/Sources/ArgumentParser/Parsable Properties/Flag.swift index e24558cb6..24cc0316e 100644 --- a/Sources/ArgumentParser/Parsable Properties/Flag.swift +++ b/Sources/ArgumentParser/Parsable Properties/Flag.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/NameSpecification.swift b/Sources/ArgumentParser/Parsable Properties/NameSpecification.swift index df061304e..724dfab1d 100644 --- a/Sources/ArgumentParser/Parsable Properties/NameSpecification.swift +++ b/Sources/ArgumentParser/Parsable Properties/NameSpecification.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/Option.swift b/Sources/ArgumentParser/Parsable Properties/Option.swift index a73187fc1..0a5537e59 100644 --- a/Sources/ArgumentParser/Parsable Properties/Option.swift +++ b/Sources/ArgumentParser/Parsable Properties/Option.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Properties/OptionGroup.swift b/Sources/ArgumentParser/Parsable Properties/OptionGroup.swift index 7a244bb0e..86ca04dff 100644 --- a/Sources/ArgumentParser/Parsable Properties/OptionGroup.swift +++ b/Sources/ArgumentParser/Parsable Properties/OptionGroup.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Types/AsyncParsableCommand.swift b/Sources/ArgumentParser/Parsable Types/AsyncParsableCommand.swift index babc681f4..dd0a86e69 100644 --- a/Sources/ArgumentParser/Parsable Types/AsyncParsableCommand.swift +++ b/Sources/ArgumentParser/Parsable Types/AsyncParsableCommand.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift b/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift index d28f32f55..ae5f85a70 100644 --- a/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift +++ b/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Types/CommandGroup.swift b/Sources/ArgumentParser/Parsable Types/CommandGroup.swift index 3760ec443..86db8ea07 100644 --- a/Sources/ArgumentParser/Parsable Types/CommandGroup.swift +++ b/Sources/ArgumentParser/Parsable Types/CommandGroup.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Types/EnumerableFlag.swift b/Sources/ArgumentParser/Parsable Types/EnumerableFlag.swift index 0a63a62be..308e1f7c3 100644 --- a/Sources/ArgumentParser/Parsable Types/EnumerableFlag.swift +++ b/Sources/ArgumentParser/Parsable Types/EnumerableFlag.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Types/ExpressibleByArgument.swift b/Sources/ArgumentParser/Parsable Types/ExpressibleByArgument.swift index 60ee1bbc9..33d81e19c 100644 --- a/Sources/ArgumentParser/Parsable Types/ExpressibleByArgument.swift +++ b/Sources/ArgumentParser/Parsable Types/ExpressibleByArgument.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift b/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift index 24fa5e6f1..7a4769992 100644 --- a/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift +++ b/Sources/ArgumentParser/Parsable Types/ParsableArguments.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsable Types/ParsableCommand.swift b/Sources/ArgumentParser/Parsable Types/ParsableCommand.swift index c9c45085d..723fd733d 100644 --- a/Sources/ArgumentParser/Parsable Types/ParsableCommand.swift +++ b/Sources/ArgumentParser/Parsable Types/ParsableCommand.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift b/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift index c60a5369f..9a0395e42 100644 --- a/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift +++ b/Sources/ArgumentParser/Parsing/ArgumentDecoder.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift b/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift index 4a6855252..738346b98 100644 --- a/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift +++ b/Sources/ArgumentParser/Parsing/ArgumentDefinition.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/ArgumentSet.swift b/Sources/ArgumentParser/Parsing/ArgumentSet.swift index 8ec45dd52..b2e87387d 100644 --- a/Sources/ArgumentParser/Parsing/ArgumentSet.swift +++ b/Sources/ArgumentParser/Parsing/ArgumentSet.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/CommandParser.swift b/Sources/ArgumentParser/Parsing/CommandParser.swift index 8e4e44afa..275dde073 100644 --- a/Sources/ArgumentParser/Parsing/CommandParser.swift +++ b/Sources/ArgumentParser/Parsing/CommandParser.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/InputKey.swift b/Sources/ArgumentParser/Parsing/InputKey.swift index 6b0b0536e..485ebc50a 100644 --- a/Sources/ArgumentParser/Parsing/InputKey.swift +++ b/Sources/ArgumentParser/Parsing/InputKey.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/InputOrigin.swift b/Sources/ArgumentParser/Parsing/InputOrigin.swift index b999edf4b..1ed0d9f0d 100644 --- a/Sources/ArgumentParser/Parsing/InputOrigin.swift +++ b/Sources/ArgumentParser/Parsing/InputOrigin.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/Name.swift b/Sources/ArgumentParser/Parsing/Name.swift index e44b76018..37e3f98b6 100644 --- a/Sources/ArgumentParser/Parsing/Name.swift +++ b/Sources/ArgumentParser/Parsing/Name.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/Parsed.swift b/Sources/ArgumentParser/Parsing/Parsed.swift index 427bc1f3c..9e1466b3a 100644 --- a/Sources/ArgumentParser/Parsing/Parsed.swift +++ b/Sources/ArgumentParser/Parsing/Parsed.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/ParsedValues.swift b/Sources/ArgumentParser/Parsing/ParsedValues.swift index f806f7d12..efedb4d98 100644 --- a/Sources/ArgumentParser/Parsing/ParsedValues.swift +++ b/Sources/ArgumentParser/Parsing/ParsedValues.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/ParserError.swift b/Sources/ArgumentParser/Parsing/ParserError.swift index 18c28d2c9..35bb25436 100644 --- a/Sources/ArgumentParser/Parsing/ParserError.swift +++ b/Sources/ArgumentParser/Parsing/ParserError.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Parsing/SplitArguments.swift b/Sources/ArgumentParser/Parsing/SplitArguments.swift index 3dbb3b9c8..5cf0d7aa7 100644 --- a/Sources/ArgumentParser/Parsing/SplitArguments.swift +++ b/Sources/ArgumentParser/Parsing/SplitArguments.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift b/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift index 0bb39ee5f..dc4b6c00b 100644 --- a/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift +++ b/Sources/ArgumentParser/Usage/DumpHelpGenerator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Usage/HelpCommand.swift b/Sources/ArgumentParser/Usage/HelpCommand.swift index fc41eabb7..80e192ffe 100644 --- a/Sources/ArgumentParser/Usage/HelpCommand.swift +++ b/Sources/ArgumentParser/Usage/HelpCommand.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Usage/HelpGenerator.swift b/Sources/ArgumentParser/Usage/HelpGenerator.swift index d4bfe21ee..4fc313042 100644 --- a/Sources/ArgumentParser/Usage/HelpGenerator.swift +++ b/Sources/ArgumentParser/Usage/HelpGenerator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Usage/MessageInfo.swift b/Sources/ArgumentParser/Usage/MessageInfo.swift index 2b5dfce11..4e42b4601 100644 --- a/Sources/ArgumentParser/Usage/MessageInfo.swift +++ b/Sources/ArgumentParser/Usage/MessageInfo.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Usage/UsageGenerator.swift b/Sources/ArgumentParser/Usage/UsageGenerator.swift index 338d49200..9c628c0cc 100644 --- a/Sources/ArgumentParser/Usage/UsageGenerator.swift +++ b/Sources/ArgumentParser/Usage/UsageGenerator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Utilities/CollectionExtensions.swift b/Sources/ArgumentParser/Utilities/CollectionExtensions.swift index dae37f7b5..a823574c7 100644 --- a/Sources/ArgumentParser/Utilities/CollectionExtensions.swift +++ b/Sources/ArgumentParser/Utilities/CollectionExtensions.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Utilities/Mutex.swift b/Sources/ArgumentParser/Utilities/Mutex.swift index 66986bfd0..2f3bd040d 100644 --- a/Sources/ArgumentParser/Utilities/Mutex.swift +++ b/Sources/ArgumentParser/Utilities/Mutex.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Utilities/Platform.swift b/Sources/ArgumentParser/Utilities/Platform.swift index fa13c253a..788697a7e 100644 --- a/Sources/ArgumentParser/Utilities/Platform.swift +++ b/Sources/ArgumentParser/Utilities/Platform.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Utilities/SequenceExtensions.swift b/Sources/ArgumentParser/Utilities/SequenceExtensions.swift index 67c5f3ef7..259f49466 100644 --- a/Sources/ArgumentParser/Utilities/SequenceExtensions.swift +++ b/Sources/ArgumentParser/Utilities/SequenceExtensions.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Utilities/StringExtensions.swift b/Sources/ArgumentParser/Utilities/StringExtensions.swift index 563426cf7..0e2076727 100644 --- a/Sources/ArgumentParser/Utilities/StringExtensions.swift +++ b/Sources/ArgumentParser/Utilities/StringExtensions.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Utilities/Tree.swift b/Sources/ArgumentParser/Utilities/Tree.swift index ff22177b9..73e953909 100644 --- a/Sources/ArgumentParser/Utilities/Tree.swift +++ b/Sources/ArgumentParser/Utilities/Tree.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Validators/CodingKeyValidator.swift b/Sources/ArgumentParser/Validators/CodingKeyValidator.swift index daae65e4e..70fd11807 100644 --- a/Sources/ArgumentParser/Validators/CodingKeyValidator.swift +++ b/Sources/ArgumentParser/Validators/CodingKeyValidator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Validators/NonsenseFlagsValidator.swift b/Sources/ArgumentParser/Validators/NonsenseFlagsValidator.swift index 0250a659e..6fe01bab3 100644 --- a/Sources/ArgumentParser/Validators/NonsenseFlagsValidator.swift +++ b/Sources/ArgumentParser/Validators/NonsenseFlagsValidator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Validators/ParsableArgumentsValidation.swift b/Sources/ArgumentParser/Validators/ParsableArgumentsValidation.swift index cb5c22758..3383c4302 100644 --- a/Sources/ArgumentParser/Validators/ParsableArgumentsValidation.swift +++ b/Sources/ArgumentParser/Validators/ParsableArgumentsValidation.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Validators/PositionalArgumentsValidator.swift b/Sources/ArgumentParser/Validators/PositionalArgumentsValidator.swift index 71ec5f09c..f8f285d30 100644 --- a/Sources/ArgumentParser/Validators/PositionalArgumentsValidator.swift +++ b/Sources/ArgumentParser/Validators/PositionalArgumentsValidator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParser/Validators/UniqueNamesValidator.swift b/Sources/ArgumentParser/Validators/UniqueNamesValidator.swift index 2db959e39..dfa9f16e2 100644 --- a/Sources/ArgumentParser/Validators/UniqueNamesValidator.swift +++ b/Sources/ArgumentParser/Validators/UniqueNamesValidator.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParserTestHelpers/StringHelpers.swift b/Sources/ArgumentParserTestHelpers/StringHelpers.swift index b1fd20c57..5baf377b0 100644 --- a/Sources/ArgumentParserTestHelpers/StringHelpers.swift +++ b/Sources/ArgumentParserTestHelpers/StringHelpers.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParserTestHelpers/TestHelpers.swift b/Sources/ArgumentParserTestHelpers/TestHelpers.swift index 507ab2de6..c2b8bb4e6 100644 --- a/Sources/ArgumentParserTestHelpers/TestHelpers.swift +++ b/Sources/ArgumentParserTestHelpers/TestHelpers.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Sources/ArgumentParserToolInfo/ToolInfo.swift b/Sources/ArgumentParserToolInfo/ToolInfo.swift index 73adb0f60..926bb5156 100644 --- a/Sources/ArgumentParserToolInfo/ToolInfo.swift +++ b/Sources/ArgumentParserToolInfo/ToolInfo.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/AsyncCommandEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/AsyncCommandEndToEndTests.swift index c7008d1a6..7fbcd4a6a 100644 --- a/Tests/ArgumentParserEndToEndTests/AsyncCommandEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/AsyncCommandEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/CustomParsingEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/CustomParsingEndToEndTests.swift index 23ec7cd00..fe2e2a16e 100644 --- a/Tests/ArgumentParserEndToEndTests/CustomParsingEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/CustomParsingEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/DefaultSubcommandEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/DefaultSubcommandEndToEndTests.swift index c6d816dc8..e0a4afa30 100644 --- a/Tests/ArgumentParserEndToEndTests/DefaultSubcommandEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/DefaultSubcommandEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/DefaultsEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/DefaultsEndToEndTests.swift index fadcab147..35f78d168 100644 --- a/Tests/ArgumentParserEndToEndTests/DefaultsEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/DefaultsEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/EnumEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/EnumEndToEndTests.swift index d6ebea5a4..f80bc043c 100644 --- a/Tests/ArgumentParserEndToEndTests/EnumEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/EnumEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/EqualsEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/EqualsEndToEndTests.swift index 49c9f864c..4f7656368 100644 --- a/Tests/ArgumentParserEndToEndTests/EqualsEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/EqualsEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/FlagsEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/FlagsEndToEndTests.swift index 908f1b4b4..3330d617b 100644 --- a/Tests/ArgumentParserEndToEndTests/FlagsEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/FlagsEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/JoinedEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/JoinedEndToEndTests.swift index 55951aed6..c7287ed06 100644 --- a/Tests/ArgumentParserEndToEndTests/JoinedEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/JoinedEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/LongNameWithShortDashEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/LongNameWithShortDashEndToEndTests.swift index 8b457a465..9eeeb2b3c 100644 --- a/Tests/ArgumentParserEndToEndTests/LongNameWithShortDashEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/LongNameWithShortDashEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/NestedCommandEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/NestedCommandEndToEndTests.swift index 9a53f5c17..db7e33479 100644 --- a/Tests/ArgumentParserEndToEndTests/NestedCommandEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/NestedCommandEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/OptionGroupEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/OptionGroupEndToEndTests.swift index e779b6fef..e571e8f58 100644 --- a/Tests/ArgumentParserEndToEndTests/OptionGroupEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/OptionGroupEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/OptionalEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/OptionalEndToEndTests.swift index 698562983..c57e2ebb0 100644 --- a/Tests/ArgumentParserEndToEndTests/OptionalEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/OptionalEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/PositionalEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/PositionalEndToEndTests.swift index 5a4054e58..8ea5c578a 100644 --- a/Tests/ArgumentParserEndToEndTests/PositionalEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/PositionalEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/RawRepresentableEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/RawRepresentableEndToEndTests.swift index f39cf1648..a4f40b561 100644 --- a/Tests/ArgumentParserEndToEndTests/RawRepresentableEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/RawRepresentableEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/RepeatingEndToEndTests+ParsingStrategy.swift b/Tests/ArgumentParserEndToEndTests/RepeatingEndToEndTests+ParsingStrategy.swift index 70f6f4684..e412cef19 100644 --- a/Tests/ArgumentParserEndToEndTests/RepeatingEndToEndTests+ParsingStrategy.swift +++ b/Tests/ArgumentParserEndToEndTests/RepeatingEndToEndTests+ParsingStrategy.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/RepeatingEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/RepeatingEndToEndTests.swift index 322f8b904..8b0594d3f 100644 --- a/Tests/ArgumentParserEndToEndTests/RepeatingEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/RepeatingEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/ShortNameEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/ShortNameEndToEndTests.swift index 306b79fba..ad10bab03 100644 --- a/Tests/ArgumentParserEndToEndTests/ShortNameEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/ShortNameEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/SimpleEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/SimpleEndToEndTests.swift index 8eb9e1cbf..2b401b9b8 100644 --- a/Tests/ArgumentParserEndToEndTests/SimpleEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/SimpleEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/SingleValueParsingStrategyTests.swift b/Tests/ArgumentParserEndToEndTests/SingleValueParsingStrategyTests.swift index f8a94dc58..d365a4ab3 100644 --- a/Tests/ArgumentParserEndToEndTests/SingleValueParsingStrategyTests.swift +++ b/Tests/ArgumentParserEndToEndTests/SingleValueParsingStrategyTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/SourceCompatEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/SourceCompatEndToEndTests.swift index 2918bd648..6502ce8a5 100644 --- a/Tests/ArgumentParserEndToEndTests/SourceCompatEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/SourceCompatEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/SubcommandEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/SubcommandEndToEndTests.swift index 9e620594d..1de975b21 100644 --- a/Tests/ArgumentParserEndToEndTests/SubcommandEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/SubcommandEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/TransformEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/TransformEndToEndTests.swift index f93dc660f..0d32a35c7 100644 --- a/Tests/ArgumentParserEndToEndTests/TransformEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/TransformEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/UnparsedValuesEndToEndTest.swift b/Tests/ArgumentParserEndToEndTests/UnparsedValuesEndToEndTest.swift index ecf89d1da..1738a8cb5 100644 --- a/Tests/ArgumentParserEndToEndTests/UnparsedValuesEndToEndTest.swift +++ b/Tests/ArgumentParserEndToEndTests/UnparsedValuesEndToEndTest.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserEndToEndTests/ValidationEndToEndTests.swift b/Tests/ArgumentParserEndToEndTests/ValidationEndToEndTests.swift index 1b2018744..9a80db981 100644 --- a/Tests/ArgumentParserEndToEndTests/ValidationEndToEndTests.swift +++ b/Tests/ArgumentParserEndToEndTests/ValidationEndToEndTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserExampleTests/CountLinesExampleTests.swift b/Tests/ArgumentParserExampleTests/CountLinesExampleTests.swift index 424b56f27..4cfae3dc8 100644 --- a/Tests/ArgumentParserExampleTests/CountLinesExampleTests.swift +++ b/Tests/ArgumentParserExampleTests/CountLinesExampleTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserExampleTests/MathExampleTests.swift b/Tests/ArgumentParserExampleTests/MathExampleTests.swift index aa1fa7df7..1a0db7a40 100644 --- a/Tests/ArgumentParserExampleTests/MathExampleTests.swift +++ b/Tests/ArgumentParserExampleTests/MathExampleTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserExampleTests/RepeatExampleTests.swift b/Tests/ArgumentParserExampleTests/RepeatExampleTests.swift index ea6185129..61f4f9db5 100644 --- a/Tests/ArgumentParserExampleTests/RepeatExampleTests.swift +++ b/Tests/ArgumentParserExampleTests/RepeatExampleTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserExampleTests/RollDiceExampleTests.swift b/Tests/ArgumentParserExampleTests/RollDiceExampleTests.swift index 9567cc244..2d508f2bc 100644 --- a/Tests/ArgumentParserExampleTests/RollDiceExampleTests.swift +++ b/Tests/ArgumentParserExampleTests/RollDiceExampleTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserGenerateDoccReferenceTests/GenerateDoccReferenceTests.swift b/Tests/ArgumentParserGenerateDoccReferenceTests/GenerateDoccReferenceTests.swift index c558df7a2..599ee86cd 100644 --- a/Tests/ArgumentParserGenerateDoccReferenceTests/GenerateDoccReferenceTests.swift +++ b/Tests/ArgumentParserGenerateDoccReferenceTests/GenerateDoccReferenceTests.swift @@ -1,12 +1,11 @@ //===----------------------------------------------------------------------===// // -// This source file is part of the Swift.org open source project +// This source file is part of the Swift Argument Parser open source project // // Copyright (c) 2024 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information -// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// diff --git a/Tests/ArgumentParserGenerateManualTests/GenerateManualTests.swift b/Tests/ArgumentParserGenerateManualTests/GenerateManualTests.swift index a023566ee..c2d6c583f 100644 --- a/Tests/ArgumentParserGenerateManualTests/GenerateManualTests.swift +++ b/Tests/ArgumentParserGenerateManualTests/GenerateManualTests.swift @@ -1,12 +1,11 @@ //===----------------------------------------------------------------------===// // -// This source file is part of the Swift.org open source project +// This source file is part of the Swift Argument Parser open source project // // Copyright (c) 2024 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information -// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// diff --git a/Tests/ArgumentParserPackageManagerTests/HelpTests.swift b/Tests/ArgumentParserPackageManagerTests/HelpTests.swift index 91dbf2bb4..8ebad46b1 100644 --- a/Tests/ArgumentParserPackageManagerTests/HelpTests.swift +++ b/Tests/ArgumentParserPackageManagerTests/HelpTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserPackageManagerTests/PackageManager/Clean.swift b/Tests/ArgumentParserPackageManagerTests/PackageManager/Clean.swift index f787b5ffe..76bb1b925 100644 --- a/Tests/ArgumentParserPackageManagerTests/PackageManager/Clean.swift +++ b/Tests/ArgumentParserPackageManagerTests/PackageManager/Clean.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserPackageManagerTests/PackageManager/Config.swift b/Tests/ArgumentParserPackageManagerTests/PackageManager/Config.swift index e222a3205..17171955b 100644 --- a/Tests/ArgumentParserPackageManagerTests/PackageManager/Config.swift +++ b/Tests/ArgumentParserPackageManagerTests/PackageManager/Config.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserPackageManagerTests/PackageManager/Describe.swift b/Tests/ArgumentParserPackageManagerTests/PackageManager/Describe.swift index 1ab8c84c9..f530544ee 100644 --- a/Tests/ArgumentParserPackageManagerTests/PackageManager/Describe.swift +++ b/Tests/ArgumentParserPackageManagerTests/PackageManager/Describe.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserPackageManagerTests/PackageManager/GenerateXcodeProject.swift b/Tests/ArgumentParserPackageManagerTests/PackageManager/GenerateXcodeProject.swift index 6df55d66b..704d470b4 100644 --- a/Tests/ArgumentParserPackageManagerTests/PackageManager/GenerateXcodeProject.swift +++ b/Tests/ArgumentParserPackageManagerTests/PackageManager/GenerateXcodeProject.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserPackageManagerTests/PackageManager/Options.swift b/Tests/ArgumentParserPackageManagerTests/PackageManager/Options.swift index 744f92b86..c5c80247b 100644 --- a/Tests/ArgumentParserPackageManagerTests/PackageManager/Options.swift +++ b/Tests/ArgumentParserPackageManagerTests/PackageManager/Options.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserPackageManagerTests/Tests.swift b/Tests/ArgumentParserPackageManagerTests/Tests.swift index fc1596df1..7c9775db6 100644 --- a/Tests/ArgumentParserPackageManagerTests/Tests.swift +++ b/Tests/ArgumentParserPackageManagerTests/Tests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserToolInfoTests/ArgumentParserToolInfoTests.swift b/Tests/ArgumentParserToolInfoTests/ArgumentParserToolInfoTests.swift index 7de342dd6..abad25650 100644 --- a/Tests/ArgumentParserToolInfoTests/ArgumentParserToolInfoTests.swift +++ b/Tests/ArgumentParserToolInfoTests/ArgumentParserToolInfoTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/CompletionScriptTests.swift b/Tests/ArgumentParserUnitTests/CompletionScriptTests.swift index 83bf347af..6b9e6b3ec 100644 --- a/Tests/ArgumentParserUnitTests/CompletionScriptTests.swift +++ b/Tests/ArgumentParserUnitTests/CompletionScriptTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/DumpHelpGenerationTests.swift b/Tests/ArgumentParserUnitTests/DumpHelpGenerationTests.swift index 3cce3176c..9a652479c 100644 --- a/Tests/ArgumentParserUnitTests/DumpHelpGenerationTests.swift +++ b/Tests/ArgumentParserUnitTests/DumpHelpGenerationTests.swift @@ -1,3 +1,4 @@ +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/ErrorMessageTests.swift b/Tests/ArgumentParserUnitTests/ErrorMessageTests.swift index a5473117a..960280579 100644 --- a/Tests/ArgumentParserUnitTests/ErrorMessageTests.swift +++ b/Tests/ArgumentParserUnitTests/ErrorMessageTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/ExitCodeTests.swift b/Tests/ArgumentParserUnitTests/ExitCodeTests.swift index 30fb3f0e9..fbe62da78 100644 --- a/Tests/ArgumentParserUnitTests/ExitCodeTests.swift +++ b/Tests/ArgumentParserUnitTests/ExitCodeTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/HelpGenerationTests+AtArgument.swift b/Tests/ArgumentParserUnitTests/HelpGenerationTests+AtArgument.swift index 49b532b0f..41920e8c3 100644 --- a/Tests/ArgumentParserUnitTests/HelpGenerationTests+AtArgument.swift +++ b/Tests/ArgumentParserUnitTests/HelpGenerationTests+AtArgument.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/HelpGenerationTests+AtOption.swift b/Tests/ArgumentParserUnitTests/HelpGenerationTests+AtOption.swift index dc6b446ad..797b9928b 100644 --- a/Tests/ArgumentParserUnitTests/HelpGenerationTests+AtOption.swift +++ b/Tests/ArgumentParserUnitTests/HelpGenerationTests+AtOption.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/HelpGenerationTests+GroupName.swift b/Tests/ArgumentParserUnitTests/HelpGenerationTests+GroupName.swift index 2e652c858..9128369b8 100644 --- a/Tests/ArgumentParserUnitTests/HelpGenerationTests+GroupName.swift +++ b/Tests/ArgumentParserUnitTests/HelpGenerationTests+GroupName.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/HelpGenerationTests.swift b/Tests/ArgumentParserUnitTests/HelpGenerationTests.swift index cb3250c4c..c414941b7 100644 --- a/Tests/ArgumentParserUnitTests/HelpGenerationTests.swift +++ b/Tests/ArgumentParserUnitTests/HelpGenerationTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/InputOriginTests.swift b/Tests/ArgumentParserUnitTests/InputOriginTests.swift index a13390aa2..996bb825c 100644 --- a/Tests/ArgumentParserUnitTests/InputOriginTests.swift +++ b/Tests/ArgumentParserUnitTests/InputOriginTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/MirrorTests.swift b/Tests/ArgumentParserUnitTests/MirrorTests.swift index 2db606b6f..254b446bd 100644 --- a/Tests/ArgumentParserUnitTests/MirrorTests.swift +++ b/Tests/ArgumentParserUnitTests/MirrorTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/NameSpecificationTests.swift b/Tests/ArgumentParserUnitTests/NameSpecificationTests.swift index 471e5a89e..08a7df1ba 100644 --- a/Tests/ArgumentParserUnitTests/NameSpecificationTests.swift +++ b/Tests/ArgumentParserUnitTests/NameSpecificationTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/ParsableArgumentsValidationTests.swift b/Tests/ArgumentParserUnitTests/ParsableArgumentsValidationTests.swift index 90cfcef04..91f47473d 100644 --- a/Tests/ArgumentParserUnitTests/ParsableArgumentsValidationTests.swift +++ b/Tests/ArgumentParserUnitTests/ParsableArgumentsValidationTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/SendableTests.swift b/Tests/ArgumentParserUnitTests/SendableTests.swift index bef3bf5a1..ae0effece 100644 --- a/Tests/ArgumentParserUnitTests/SendableTests.swift +++ b/Tests/ArgumentParserUnitTests/SendableTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/SequenceExtensionTests.swift b/Tests/ArgumentParserUnitTests/SequenceExtensionTests.swift index c14d76b44..6cb5d81c5 100644 --- a/Tests/ArgumentParserUnitTests/SequenceExtensionTests.swift +++ b/Tests/ArgumentParserUnitTests/SequenceExtensionTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/SplitArgumentTests.swift b/Tests/ArgumentParserUnitTests/SplitArgumentTests.swift index 29464899d..275d8eff1 100644 --- a/Tests/ArgumentParserUnitTests/SplitArgumentTests.swift +++ b/Tests/ArgumentParserUnitTests/SplitArgumentTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/StringEditDistanceTests.swift b/Tests/ArgumentParserUnitTests/StringEditDistanceTests.swift index a1d432570..0525724b1 100644 --- a/Tests/ArgumentParserUnitTests/StringEditDistanceTests.swift +++ b/Tests/ArgumentParserUnitTests/StringEditDistanceTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/StringSnakeCaseTests.swift b/Tests/ArgumentParserUnitTests/StringSnakeCaseTests.swift index dae7de8f2..43398f578 100644 --- a/Tests/ArgumentParserUnitTests/StringSnakeCaseTests.swift +++ b/Tests/ArgumentParserUnitTests/StringSnakeCaseTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/StringWrappingTests.swift b/Tests/ArgumentParserUnitTests/StringWrappingTests.swift index 0d848cdf0..70d3eb3a9 100644 --- a/Tests/ArgumentParserUnitTests/StringWrappingTests.swift +++ b/Tests/ArgumentParserUnitTests/StringWrappingTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/TreeTests.swift b/Tests/ArgumentParserUnitTests/TreeTests.swift index 459a9b703..606c4d86a 100644 --- a/Tests/ArgumentParserUnitTests/TreeTests.swift +++ b/Tests/ArgumentParserUnitTests/TreeTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tests/ArgumentParserUnitTests/UsageGenerationTests.swift b/Tests/ArgumentParserUnitTests/UsageGenerationTests.swift index 6e2eae762..99d23f1e4 100644 --- a/Tests/ArgumentParserUnitTests/UsageGenerationTests.swift +++ b/Tests/ArgumentParserUnitTests/UsageGenerationTests.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/changelog-authors/ChangelogAuthors.swift b/Tools/changelog-authors/ChangelogAuthors.swift index b93628118..b21c98ce0 100644 --- a/Tools/changelog-authors/ChangelogAuthors.swift +++ b/Tools/changelog-authors/ChangelogAuthors.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/changelog-authors/Models.swift b/Tools/changelog-authors/Models.swift index ddad15fc5..04f0ac990 100644 --- a/Tools/changelog-authors/Models.swift +++ b/Tools/changelog-authors/Models.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/changelog-authors/Util.swift b/Tools/changelog-authors/Util.swift index 1735b1cc5..015e07a78 100644 --- a/Tools/changelog-authors/Util.swift +++ b/Tools/changelog-authors/Util.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-docc-reference/Extensions/ArgumentParser+Markdown.swift b/Tools/generate-docc-reference/Extensions/ArgumentParser+Markdown.swift index 7d807f319..05e187061 100644 --- a/Tools/generate-docc-reference/Extensions/ArgumentParser+Markdown.swift +++ b/Tools/generate-docc-reference/Extensions/ArgumentParser+Markdown.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-docc-reference/Extensions/Process+SimpleAPI.swift b/Tools/generate-docc-reference/Extensions/Process+SimpleAPI.swift index 70a73c32a..1d30ab45f 100644 --- a/Tools/generate-docc-reference/Extensions/Process+SimpleAPI.swift +++ b/Tools/generate-docc-reference/Extensions/Process+SimpleAPI.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-docc-reference/GenerateDoccReference.swift b/Tools/generate-docc-reference/GenerateDoccReference.swift index ae6877afb..c5f1c6a0e 100644 --- a/Tools/generate-docc-reference/GenerateDoccReference.swift +++ b/Tools/generate-docc-reference/GenerateDoccReference.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/AuthorArgument.swift b/Tools/generate-manual/AuthorArgument.swift index 88764f19e..99f3a8879 100644 --- a/Tools/generate-manual/AuthorArgument.swift +++ b/Tools/generate-manual/AuthorArgument.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/ArgumentSynopsis.swift b/Tools/generate-manual/DSL/ArgumentSynopsis.swift index 2dc214d29..1ab4ed81a 100644 --- a/Tools/generate-manual/DSL/ArgumentSynopsis.swift +++ b/Tools/generate-manual/DSL/ArgumentSynopsis.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Author.swift b/Tools/generate-manual/DSL/Author.swift index 823f19fe9..7282d556c 100644 --- a/Tools/generate-manual/DSL/Author.swift +++ b/Tools/generate-manual/DSL/Author.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Authors.swift b/Tools/generate-manual/DSL/Authors.swift index 963da462b..d5600ef5c 100644 --- a/Tools/generate-manual/DSL/Authors.swift +++ b/Tools/generate-manual/DSL/Authors.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Core/Container.swift b/Tools/generate-manual/DSL/Core/Container.swift index a0651d3dc..b788802e7 100644 --- a/Tools/generate-manual/DSL/Core/Container.swift +++ b/Tools/generate-manual/DSL/Core/Container.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Core/Empty.swift b/Tools/generate-manual/DSL/Core/Empty.swift index d681fcca7..9ce4d995a 100644 --- a/Tools/generate-manual/DSL/Core/Empty.swift +++ b/Tools/generate-manual/DSL/Core/Empty.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Core/ForEach.swift b/Tools/generate-manual/DSL/Core/ForEach.swift index 49ea400b7..656e1c5a3 100644 --- a/Tools/generate-manual/DSL/Core/ForEach.swift +++ b/Tools/generate-manual/DSL/Core/ForEach.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Core/MDocASTNodeWrapper.swift b/Tools/generate-manual/DSL/Core/MDocASTNodeWrapper.swift index 1f3c2de1c..63e63cc56 100644 --- a/Tools/generate-manual/DSL/Core/MDocASTNodeWrapper.swift +++ b/Tools/generate-manual/DSL/Core/MDocASTNodeWrapper.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Core/MDocBuilder.swift b/Tools/generate-manual/DSL/Core/MDocBuilder.swift index 8ccbd9a38..c48ff391e 100644 --- a/Tools/generate-manual/DSL/Core/MDocBuilder.swift +++ b/Tools/generate-manual/DSL/Core/MDocBuilder.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Core/MDocComponent.swift b/Tools/generate-manual/DSL/Core/MDocComponent.swift index 12fc67b2f..d8ed1a493 100644 --- a/Tools/generate-manual/DSL/Core/MDocComponent.swift +++ b/Tools/generate-manual/DSL/Core/MDocComponent.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Discussion.swift b/Tools/generate-manual/DSL/Discussion.swift index bcd962fcc..15b522fc4 100644 --- a/Tools/generate-manual/DSL/Discussion.swift +++ b/Tools/generate-manual/DSL/Discussion.swift @@ -1,12 +1,11 @@ //===----------------------------------------------------------------------===// // -// This source file is part of the Swift.org open source project +// This source file is part of the Swift Argument Parser open source project // // Copyright (c) 2024 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information -// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// diff --git a/Tools/generate-manual/DSL/Document.swift b/Tools/generate-manual/DSL/Document.swift index 86c43aed0..fc0fa7bed 100644 --- a/Tools/generate-manual/DSL/Document.swift +++ b/Tools/generate-manual/DSL/Document.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/DocumentDate.swift b/Tools/generate-manual/DSL/DocumentDate.swift index c32b50f9e..7da01924f 100644 --- a/Tools/generate-manual/DSL/DocumentDate.swift +++ b/Tools/generate-manual/DSL/DocumentDate.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Exit.swift b/Tools/generate-manual/DSL/Exit.swift index a67a2f38a..dcd53806d 100644 --- a/Tools/generate-manual/DSL/Exit.swift +++ b/Tools/generate-manual/DSL/Exit.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/List.swift b/Tools/generate-manual/DSL/List.swift index 516dc680a..b6c295e1b 100644 --- a/Tools/generate-manual/DSL/List.swift +++ b/Tools/generate-manual/DSL/List.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/MultiPageDescription.swift b/Tools/generate-manual/DSL/MultiPageDescription.swift index fca3be3d4..4927e5b57 100644 --- a/Tools/generate-manual/DSL/MultiPageDescription.swift +++ b/Tools/generate-manual/DSL/MultiPageDescription.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Name.swift b/Tools/generate-manual/DSL/Name.swift index 4eacd8207..3d6711383 100644 --- a/Tools/generate-manual/DSL/Name.swift +++ b/Tools/generate-manual/DSL/Name.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Preamble.swift b/Tools/generate-manual/DSL/Preamble.swift index 9acdc2d71..5c37ec34f 100644 --- a/Tools/generate-manual/DSL/Preamble.swift +++ b/Tools/generate-manual/DSL/Preamble.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Section.swift b/Tools/generate-manual/DSL/Section.swift index c741b1993..54cc980da 100644 --- a/Tools/generate-manual/DSL/Section.swift +++ b/Tools/generate-manual/DSL/Section.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/SeeAlso.swift b/Tools/generate-manual/DSL/SeeAlso.swift index 684113d8d..180a9a2df 100644 --- a/Tools/generate-manual/DSL/SeeAlso.swift +++ b/Tools/generate-manual/DSL/SeeAlso.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/SinglePageDescription.swift b/Tools/generate-manual/DSL/SinglePageDescription.swift index 726fe7294..62f95d8fe 100644 --- a/Tools/generate-manual/DSL/SinglePageDescription.swift +++ b/Tools/generate-manual/DSL/SinglePageDescription.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/DSL/Synopsis.swift b/Tools/generate-manual/DSL/Synopsis.swift index 1b978317b..568fbeda9 100644 --- a/Tools/generate-manual/DSL/Synopsis.swift +++ b/Tools/generate-manual/DSL/Synopsis.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/Extensions/ArgumentParser+MDoc.swift b/Tools/generate-manual/Extensions/ArgumentParser+MDoc.swift index 656164e8b..0999d9148 100644 --- a/Tools/generate-manual/Extensions/ArgumentParser+MDoc.swift +++ b/Tools/generate-manual/Extensions/ArgumentParser+MDoc.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift b/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift index 0d0f5ed08..a2550bb9b 100644 --- a/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift +++ b/Tools/generate-manual/Extensions/Date+ExpressibleByArgument.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/Extensions/Process+SimpleAPI.swift b/Tools/generate-manual/Extensions/Process+SimpleAPI.swift index 92133d7c4..eb302b1d7 100644 --- a/Tools/generate-manual/Extensions/Process+SimpleAPI.swift +++ b/Tools/generate-manual/Extensions/Process+SimpleAPI.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/GenerateManual.swift b/Tools/generate-manual/GenerateManual.swift index 1e94c0df0..0b42af303 100644 --- a/Tools/generate-manual/GenerateManual.swift +++ b/Tools/generate-manual/GenerateManual.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/MDoc/MDocASTNode.swift b/Tools/generate-manual/MDoc/MDocASTNode.swift index ea8a1f458..a1bab75c5 100644 --- a/Tools/generate-manual/MDoc/MDocASTNode.swift +++ b/Tools/generate-manual/MDoc/MDocASTNode.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/MDoc/MDocMacro.swift b/Tools/generate-manual/MDoc/MDocMacro.swift index e6910cd84..b95827ee2 100644 --- a/Tools/generate-manual/MDoc/MDocMacro.swift +++ b/Tools/generate-manual/MDoc/MDocMacro.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/MDoc/MDocSerializationContext.swift b/Tools/generate-manual/MDoc/MDocSerializationContext.swift index 13a77c7d2..d18ef9d50 100644 --- a/Tools/generate-manual/MDoc/MDocSerializationContext.swift +++ b/Tools/generate-manual/MDoc/MDocSerializationContext.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project // diff --git a/Tools/generate-manual/MDoc/String+Escaping.swift b/Tools/generate-manual/MDoc/String+Escaping.swift index e87e3bfd8..d1da70f89 100644 --- a/Tools/generate-manual/MDoc/String+Escaping.swift +++ b/Tools/generate-manual/MDoc/String+Escaping.swift @@ -1,4 +1,4 @@ -//===----------------------------------------------------------*- swift -*-===// +//===----------------------------------------------------------------------===// // // This source file is part of the Swift Argument Parser open source project //