Skip to content

Commit

Permalink
fix swifltint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
twittemb committed Aug 30, 2018
1 parent 1a70b3d commit ce2f5df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions RxFlow/NextFlowItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public struct NextFlowItem {
/// - one: a Flow will trigger only one NextFlowItem for a Step
/// - end: a Flow will trigger a special NextFlowItem that represents the dismissal of this Flow
/// - none: no further navigation will be triggered for a Step
// swiftlint:disable identifier_name
public enum NextFlowItems {
/// a Flow will trigger several NextFlowItem at the same time for the same Step
case multiple (flowItems: [NextFlowItem])
Expand All @@ -52,3 +53,4 @@ public enum NextFlowItems {
/// no further navigation will be triggered for a Step
case none
}
// swiftlint:enable identifier_name
2 changes: 2 additions & 0 deletions RxFlowDemo/RxFlowDemo/Flows/DemoStep.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import RxFlow

// swiftlint:disable identifier_name
enum DemoStep: Step {
// Onboarding
case onboarding
Expand All @@ -30,3 +31,4 @@ enum DemoStep: Step {
case about
case settingsIsComplete
}
// swiftlint:enable identifier_name

0 comments on commit ce2f5df

Please sign in to comment.