Skip to content

Commit

Permalink
⚡️ :: swiftLint 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
juyeong525 committed Mar 20, 2024
1 parent c3fdd32 commit 81021a4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions Projects/Data/Sources/DI/RepositoryAssembly.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ import Domain
public final class RepositoryAssembly: Assembly {
public init() {}

// swiftlint:disable function_body_length
public func assemble(container: Container) {
container.register(AuthRepository.self) { resolver in
AuthRepositoryImpl(remoteAuthDataSource: resolver.resolve(RemoteAuthDataSource.self)!)
}
}
// swiftlint:enable function_body_length
}
2 changes: 0 additions & 2 deletions Projects/Data/Sources/DI/UseCaseAssembly.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import Domain
public final class UseCaseAssembly: Assembly {
public init() {}

// swiftlint:disable function_body_length
public func assemble(container: Container) {
// Auth
container.register(LoginUseCase.self) { resolver in
Expand All @@ -19,5 +18,4 @@ public final class UseCaseAssembly: Assembly {
)
}
}
// swiftlint:enable function_body_length
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extension OauthLoginReactor {
}

public func reduce(state: State, mutation: Mutation) -> State {
var newState = state
let newState = state
switch mutation {
case .navigateToEmailLogin:
steps.accept(OauthLoginStep.emailLoginisRequired)
Expand Down

0 comments on commit 81021a4

Please sign in to comment.