Skip to content

Commit 67dba6f

Browse files
committed
Fix missing license disclaimer in file headers
fix-file-headers
1 parent cb64d3b commit 67dba6f

30 files changed

+88
-1
lines changed

.swiftformat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
--redundanttype explicit
33
--swiftversion 5.7
44
--maxwidth 120
5-
--header "{file}\nArgumentEncoding\n\nCopyright © {year} MFB Technologies, Inc. All rights reserved."
5+
--header "{file}\nArgumentEncoding\n\nCopyright © {year} MFB Technologies, Inc. All rights reserved.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree."
66
--allman false
77
--exclude **/output/**/*,.tuist-bin,**/.swiftpm/*,**/.build/*
88
--wraparguments before-first

Examples/Sources/SwiftCommand/RunCommand.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
import ArgumentEncoding
710

Examples/Sources/SwiftCommand/SwiftCommand.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
import ArgumentEncoding
710

Examples/Sources/SwiftCommand/TestCommand.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
import ArgumentEncoding
710

Examples/Sources/SwiftCommand/main.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
let test = SwiftCommand.test(TestCommand(
710
parallel: true,

Sources/ArgumentEncoding/ArgumentGroup.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
import Dependencies
710

Sources/ArgumentEncoding/CaseConverter.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
import Foundation
710

Sources/ArgumentEncoding/Command.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
/// A command type argument with no nested or children arguments.
710
public struct Command: Hashable, Sendable, RawRepresentable {

Sources/ArgumentEncoding/CommandRepresentable.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
import Dependencies
710

Sources/ArgumentEncoding/DecoderUserInfo+OptionHelpers.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// ArgumentEncoding
33
//
44
// Copyright © 2023 MFB Technologies, Inc. All rights reserved.
5+
//
6+
// This source code is licensed under the MIT license found in the
7+
// LICENSE file in the root directory of this source tree.
58

69
import Foundation
710

0 commit comments

Comments
 (0)