Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try warning #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sample-ios-swift/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import RxSwift

class ViewController: UIViewController {

override func viewDidLoad() {
override func viewDidLoad(){

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Opening braces should be preceded by a single space and on the same line as the declaration.

super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

Expand All @@ -27,6 +27,8 @@ class ViewController: UIViewController {
SVProgressHUD.show(withStatus: "Sample iOS app")
}
})


Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Limit vertical whitespace to a single empty line. Currently 2.

}

override func didReceiveMemoryWarning() {
Expand Down