Skip to content

Commit

Permalink
프로젝트 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
juyeong525 committed Feb 15, 2024
1 parent 6a5e50a commit 1b35b26
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
4 changes: 1 addition & 3 deletions Projects/Presentation/Sources/Main/MainReactor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ public final class MainReactor: BaseReactor, Stepper {
public let steps = PublishRelay<Step>()
public let initialState = State()
private let disposeBag = DisposeBag()
public init() {

}
public init() {}

public enum Action { }

Expand Down
4 changes: 1 addition & 3 deletions Projects/Presentation/Sources/Main/MainViewController.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import UIKit

public class MainViewController: BaseReactorViewController<MainReactor> {

}
public class MainViewController: BaseReactorViewController<MainReactor> {}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Emoting-iOS
9 changes: 9 additions & 0 deletions Tuist/ProjectDescriptionHelpers/Action+Template.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import ProjectDescription

public extension TargetScript {
static let swiftLint = TargetScript.pre(
path: Path.relativeToRoot("Scripts/SwiftLintRunScript.sh"),
name: "SwiftLint",
basedOnDependencyAnalysis: false
)
}
2 changes: 1 addition & 1 deletion Tuist/ProjectDescriptionHelpers/Project+Templates.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public extension Project {
infoPlist: .extendingDefault(with: additionalPlistRows),
sources: sources,
resources: resources,
scripts: [],
scripts: [.swiftLint],
dependencies: dependencies
)
]
Expand Down

0 comments on commit 1b35b26

Please sign in to comment.