diff --git a/.swiftlint.yml b/.swiftlint.yml index 6f6d40d1..d9a15cf9 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -14,8 +14,6 @@ identifier_name: error: 3 excluded: # 제외할 문자열 목록 - f - - ws - - my function_body_length: warning: 150 error: 300 @@ -30,18 +28,7 @@ line_length: error: 400 disabled_rules: # 제외하고 싶은 룰 - trailing_whitespace - - type_name - - trailing_comma -# - conditional_returns_on_newline -# - identifier_name -# - nesting -# - colon -# - control_statement -# - vertical_parameter_alignment -# - cyclomatic_complexity -# - void_function_in_ternary -# - comment_spacing -# - function_parameter_count + - type_name # 타입명에 _가 들어가면 경고 + - trailing_comma # 배열 마지막 아이템에 ,가 붙으면 경고 opt_in_rules: - empty_string -# - conditional_returns_on_newline diff --git a/Plugins/EnvironmentPlugin/ProjectDescriptionHelpers/InfoPlist.swift b/Plugins/EnvironmentPlugin/ProjectDescriptionHelpers/InfoPlist.swift index 91690e2b..f9a8c7a9 100644 --- a/Plugins/EnvironmentPlugin/ProjectDescriptionHelpers/InfoPlist.swift +++ b/Plugins/EnvironmentPlugin/ProjectDescriptionHelpers/InfoPlist.swift @@ -30,6 +30,7 @@ public extension [String: InfoPlist.Value] { static let secrets: Self = [ "SERVER_KEY": "$(SERVER_KEY)" ] + static let additionalInfoPlist: Self = [ "ITSAppUsesNonExemptEncryption": "NO", "NSAppTransportSecurity": [ @@ -37,7 +38,6 @@ public extension [String: InfoPlist.Value] { "ws.bus.go.kr": [ "NSIncludesSubdomains": true, "NSExceptionAllowsInsecureHTTPLoads": true, - "NSTemporaryExceptionAllowsInsecureWebSocketLoads": true ] ] ] diff --git a/Projects/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json b/Projects/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json deleted file mode 100644 index 483e8f9a..00000000 --- a/Projects/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "colors" : [ - { - "color" : { - "color-space" : "srgb", - "components" : { - "alpha" : "1.000", - "blue" : "0xFF", - "green" : "0xB1", - "red" : "0x5C" - } - }, - "idiom" : "universal" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/Projects/DesignSystem/Resources/Base.lproj/LaunchScreen.storyboard b/Projects/DesignSystem/Resources/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index dc21c815..00000000 --- a/Projects/DesignSystem/Resources/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Projects/Networks/Sources/EndPoint/EndPoint.swift b/Projects/Networks/Sources/EndPoint/EndPoint.swift index 60463c27..28cd74ee 100644 --- a/Projects/Networks/Sources/EndPoint/EndPoint.swift +++ b/Projects/Networks/Sources/EndPoint/EndPoint.swift @@ -20,7 +20,7 @@ public protocol EndPoint { } public enum Scheme: String { - case http, https, ws + case http, https } extension EndPoint {