SwiftLint
                                
                                 SwiftLint copied to clipboard
                                
                                    SwiftLint copied to clipboard
                            
                            
                            
                        Falsepositive overridden_super_call
    @IBOutlet private weak var contextView: UIView!
    override func viewWillAppear(_ animated: Bool) {
        if animated {
            contextView.transform = CGAffineTransform(translationX: 0, y: contextView.bounds.height)
            UIView.transition(with: contextView,
                              duration: 0.25,
                              options: .curveEaseInOut,
                              animations: {
                self.contextView.transform = .identity
            },
                              completion: { _ in
                super.viewWillAppear(true)
            })
        } else {
            super.viewWillAppear(false)
        }
    }
Version 0.55.1