Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 21 additions & 11 deletions Modules/DesignSystem/Derived/Sources/TuistAssets+DesignSystem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,32 @@
// swiftformat:disable all
// Generated using tuist — https://github.com/tuist/tuist



#if os(macOS)
import AppKit
#elseif os(iOS)
import UIKit
#elseif os(tvOS) || os(watchOS)
import UIKit
#if hasFeature(InternalImportsByDefault)
public import AppKit
#else
import AppKit
#endif
#else
#if hasFeature(InternalImportsByDefault)
public import UIKit
#else
import UIKit
#endif
#if canImport(SwiftUI)
import SwiftUI
#endif

// swiftlint:disable superfluous_disable_command file_length implicit_return
#if canImport(SwiftUI)
#if hasFeature(InternalImportsByDefault)
public import SwiftUI
#else
import SwiftUI
#endif
#endif

// MARK: - Asset Catalogs

// swiftlint:disable identifier_name line_length nesting type_body_length type_name
public enum DesignSystemAsset: Sendable {
public static let accentColor = DesignSystemColors(name: "AccentColor")
public static let allcheck = DesignSystemImages(name: "allcheck")
Expand All @@ -36,6 +46,7 @@ public enum DesignSystemAsset: Sendable {
public static let logo = DesignSystemImages(name: "logo")
public static let mailbox = DesignSystemImages(name: "mailbox")
public static let nodata = DesignSystemImages(name: "nodata")
public static let nohighlight = DesignSystemImages(name: "nohighlight")
public static let nologin = DesignSystemImages(name: "nologin")
public static let noprofile = DesignSystemImages(name: "noprofile")
public static let nosubscribe = DesignSystemImages(name: "nosubscribe")
Expand Down Expand Up @@ -103,7 +114,6 @@ public enum DesignSystemAsset: Sendable {
public static let lineCloseEye = DesignSystemImages(name: "_Line Close Eye")
public static let bookmarked = DesignSystemImages(name: "bookmarked")
}
// swiftlint:enable identifier_name line_length nesting type_body_length type_name

// MARK: - Implementation Details

Expand Down Expand Up @@ -212,5 +222,5 @@ public extension SwiftUI.Image {
}
#endif

// swiftlint:enable all
// swiftformat:enable all
// swiftlint:enable all
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "nohighlight.pdf",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "Icon Button.pdf",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Comment on lines +1 to +12
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

trashbin.imageset 애셋은 코드에서 사용되지 않는 것으로 보입니다. 실제 코드에서는 DesignSystemAsset.lineTrash가 사용되고 있으며, 이는 Line Trash.imageset에 해당합니다. 이 파일은 개발 과정에서 남은 불필요한 파일일 수 있으므로, 프로젝트를 깔끔하게 유지하기 위해 삭제하는 것을 고려해 보세요. 또한 내부의 이미지 파일명인 Icon Button.pdf도 좀 더 설명적인 이름으로 바꾸면 좋을 것 같습니다.

Binary file not shown.
Loading
Loading