Skip to content

Commit 6f54030

Browse files
leogdionclaude
andcommitted
Skip mise install in CI and apply formatting fixes
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e7ce1ab commit 6f54030

File tree

183 files changed

+188
-185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+188
-185
lines changed

Scripts/lint.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ else
4040
fi
4141

4242
pushd $PACKAGE_DIR
43-
mise install
43+
if [ -z "$CI" ]; then
44+
mise install
45+
fi
4446
eval "$(mise env)"
4547

4648
if [ -z "$CI" ]; then

Sources/DocumentationHarness/CodeBlock.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation

Sources/DocumentationHarness/CodeBlockExtraction.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation

Sources/DocumentationHarness/CodeBlockExtractor.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation
@@ -31,5 +31,6 @@
3131
/// - Parameter content: The markdown content to parse
3232
/// - Returns: Array of extracted code blocks
3333
/// - Throws: CodeBlockExtractorError if extraction fails
34-
package typealias CodeBlockExtractor = @Sendable (String) throws(CodeBlockExtractorError) ->
34+
package typealias CodeBlockExtractor =
35+
@Sendable (String) throws(CodeBlockExtractorError) ->
3536
[CodeBlock]

Sources/DocumentationHarness/CodeBlockExtractorError.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation

Sources/DocumentationHarness/CodeBlockType.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation

Sources/DocumentationHarness/CodeBlockValidationParameters.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation

Sources/DocumentationHarness/CodeSyntaxValidator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation

Sources/DocumentationHarness/CompilationResult.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation

Sources/DocumentationHarness/DocumentationValidator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SyntaxKit
44
//
55
// Created by Leo Dion.
6-
// Copyright © 2025 BrightDigit.
6+
// Copyright © 2026 BrightDigit.
77
//
88
// Permission is hereby granted, free of charge, to any person
99
// obtaining a copy of this software and associated documentation

0 commit comments

Comments
 (0)