Skip to content

Commit f8505fe

Browse files
committed
refactor: 린트 trailing comma 제거
1 parent e7085ac commit f8505fe

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Tuist/ProjectDescriptionHelpers/Project+Settings.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public extension Settings {
1616
"CURRENT_PROJECT_VERSION": "1",
1717
"INFOPLIST_KEY_CFBundleShortVersionString": "$(MARKETING_VERSION)",
1818
"INFOPLIST_KEY_CFBundleVersion": "$(CURRENT_PROJECT_VERSION)",
19-
"TARGETED_DEVICE_FAMILY": "1,2",
2019
"SWIFT_VERSION": "6.0",
20+
"TARGETED_DEVICE_FAMILY": "1,2"
2121
]
2222
commonBase.merge(base) { _, new in new }
2323

@@ -26,7 +26,7 @@ public extension Settings {
2626
base: commonBase,
2727
configurations: [
2828
.debug(name: "Debug", settings: debug, xcconfig: versionXcconfigPath),
29-
.release(name: "Release", settings: release, xcconfig: versionXcconfigPath),
29+
.release(name: "Release", settings: release, xcconfig: versionXcconfigPath)
3030
],
3131
defaultSettings: defaultSettings
3232
)
@@ -36,7 +36,7 @@ public extension Settings {
3636
base: commonBase,
3737
configurations: [
3838
.debug(name: "Debug", settings: debug),
39-
.release(name: "Release", settings: release),
39+
.release(name: "Release", settings: release)
4040
],
4141
defaultSettings: defaultSettings
4242
)
@@ -50,7 +50,7 @@ public extension Settings {
5050
"ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS": "YES",
5151
"DEVELOPMENT_TEAM": DevLogSigning.teamID,
5252
"ENABLE_USER_SCRIPT_SANDBOXING": "YES",
53-
"STRING_CATALOG_GENERATE_SYMBOLS": "YES",
53+
"STRING_CATALOG_GENERATE_SYMBOLS": "YES"
5454
]
5555
base.merge(additionalBase) { _, new in new }
5656
return .devlog(versionXcconfigPath: versionXcconfigPath, base: base)

0 commit comments

Comments
 (0)