diff --git a/PHP Monitor.xcodeproj/project.pbxproj b/PHP Monitor.xcodeproj/project.pbxproj index b41c8950..f623c7ca 100644 --- a/PHP Monitor.xcodeproj/project.pbxproj +++ b/PHP Monitor.xcodeproj/project.pbxproj @@ -4328,7 +4328,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1900; + CURRENT_PROJECT_VERSION = 1905; DEAD_CODE_STRIPPING = YES; DEBUG = YES; ENABLE_APP_SANDBOX = NO; @@ -4372,7 +4372,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1900; + CURRENT_PROJECT_VERSION = 1905; DEAD_CODE_STRIPPING = YES; DEBUG = NO; ENABLE_APP_SANDBOX = NO; @@ -4554,7 +4554,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1900; + CURRENT_PROJECT_VERSION = 1905; DEAD_CODE_STRIPPING = YES; DEBUG = YES; ENABLE_APP_SANDBOX = NO; @@ -4747,7 +4747,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1900; + CURRENT_PROJECT_VERSION = 1905; DEAD_CODE_STRIPPING = YES; DEBUG = NO; ENABLE_APP_SANDBOX = NO; diff --git a/phpmon/Domain/SwiftUI/Common/Markdown/MarkdownTextViewRepresentable.swift b/phpmon/Domain/SwiftUI/Common/Markdown/MarkdownTextViewRepresentable.swift index a24e3ce0..3ca1ffb8 100644 --- a/phpmon/Domain/SwiftUI/Common/Markdown/MarkdownTextViewRepresentable.swift +++ b/phpmon/Domain/SwiftUI/Common/Markdown/MarkdownTextViewRepresentable.swift @@ -181,6 +181,7 @@ struct MarkdownTextViewRepresentable: NSViewRepresentable { return ranges } + // swiftlint:disable function_parameter_count /** Replaces markup like `**bold**` or `*italic*` with the appropriate font, skipping any matches that overlap with an already-processed code span. @@ -214,6 +215,7 @@ struct MarkdownTextViewRepresentable: NSViewRepresentable { result.replaceCharacters(in: match.range, with: replacement) } } + // swiftlint:enable function_parameter_count } // MARK: - Shared Constants