Skip to content

Commit

Permalink
fix(GiniCaptureSDK): Fix lint issues
Browse files Browse the repository at this point in the history
PP-981
  • Loading branch information
zladzeyka committed Jan 29, 2025
1 parent f9422cf commit 6b4d34a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ final class HelpFormatsViewController: UIViewController, HelpBottomBarEnabledVie
tableView.translatesAutoresizingMaskIntoConstraints = false
return tableView
}()
private (set) var dataSource: HelpFormatsDataSource
private(set) var dataSource: HelpFormatsDataSource
private var giniConfiguration: GiniConfiguration
private let tableRowHeight: CGFloat = 44
private let sectionHeight: CGFloat = 70
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ protocol HelpMenuViewControllerDelegate: AnyObject {
final class HelpMenuViewController: UIViewController, HelpBottomBarEnabledViewController {

weak var delegate: HelpMenuViewControllerDelegate?
private (set) var dataSource: HelpMenuDataSource
private(set) var dataSource: HelpMenuDataSource
private let giniConfiguration: GiniConfiguration
private let tableRowHeight: CGFloat = 44
var navigationBarBottomAdapter: HelpBottomNavigationBarAdapter?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ final class HelpTipsViewController: UIViewController, HelpBottomBarEnabledViewCo
tableView.translatesAutoresizingMaskIntoConstraints = false
return tableView
}()
private (set) var dataSource: HelpTipsDataSource
private(set) var dataSource: HelpTipsDataSource
private var giniConfiguration: GiniConfiguration
private let tableRowHeight: CGFloat = 76

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class BottomButtonsViewModel {

init(retakeBlock: (() -> Void)? = nil,
manuallyPressed: (() -> Void)? = nil,
cancelPressed: @escaping(() -> Void)) {
cancelPressed: @escaping (() -> Void)) {
self.retakePressed = retakeBlock
self.enterManuallyPressed = manuallyPressed
self.cancelPressed = cancelPressed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ final class NoResultScreenViewController: UIViewController {
}
fatalError("No result header not found")
}()
private (set) var dataSource: HelpDataSource
private(set) var dataSource: HelpDataSource
private var giniConfiguration: GiniConfiguration
private let type: NoResultType
private let viewModel: BottomButtonsViewModel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class OnboardingDataSource: NSObject, BaseCollectionViewDataSource {

weak var delegate: OnboardingScreen?
var isProgrammaticScroll = false

private let giniConfiguration: GiniConfiguration
private (set) var currentPageIndex = 0
private(set) var currentPageIndex = 0
private var isInitialScroll = true

lazy var pageModels: [OnboardingPageModel] = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class OnboardingViewController: UIViewController {
@IBOutlet weak var pagesCollection: UICollectionView!
@IBOutlet weak var pageControl: UIPageControl!
@IBOutlet weak var nextButton: MultilineTitleButton!
private (set) var dataSource: OnboardingDataSource
private(set) var dataSource: OnboardingDataSource
private let configuration = GiniConfiguration.shared
private var navigationBarBottomAdapter: OnboardingNavigationBarBottomAdapter?
private var bottomNavigationBar: UIView?
Expand Down

0 comments on commit 6b4d34a

Please sign in to comment.