Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 532 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (20 loc) · 532 Bytes

Contributing

This section provides detailed information on the contribution process and offers valuable recommendations.

Codestyle

Marks

For better organization and readability of the code structure, it's advisable to utilize '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: - Override