Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 436 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (20 loc) · 436 Bytes

Contributing

Here provided info about contribution process and recommendations.

Codestyle

Marks

For clean struct code good is using marks.

class Example {

    // MARK: - Init
    
    init() {}
}

Here you find all which using in project:

  • // MARK: - Init
  • // MARK: - Lifecycle
  • // MARK: - Layout
  • // MARK: - Public
  • // MARK: - Private
  • // MARK: - Internal
  • // MARK: - Models
  • // MARK: - Ovveride