You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
587 B
29 lines
587 B
3 years ago
|
# Contributing
|
||
|
|
||
|
Here provided more info about project, contribution process and recomended changes.
|
||
|
Please, read it before pull request or create issue.
|
||
|
|
||
|
## Codestyle
|
||
|
|
||
|
### Marks
|
||
|
|
||
|
For clean struct code good is using marks.
|
||
|
|
||
|
```swift
|
||
|
class Example {
|
||
|
|
||
|
// MARK: - Init
|
||
|
|
||
|
init() {}
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Here you find all which using in project:
|
||
|
|
||
|
- // MARK: - Init
|
||
|
- // MARK: - Lifecycle
|
||
|
- // MARK: - Layout
|
||
|
- // MARK: - Helpers
|
||
|
|
||
|
If you can't find valid, add new to codestyle agreements please. Other can be use if class is large and need struct it even without adding to codestyle agreements.
|