You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prefer the One true bracing style. It is also used by Apple. : http://en.wikipedia.org/wiki/Indent_style#Variant:_1TBS
180
180
181
181
```swift
182
182
if condition {
@@ -211,3 +211,10 @@ if (condition) {
211
211
212
212
When returning early prefer ''guard'' over ''if''.
213
213
214
+
####Comments
215
+
216
+
Preffer writing self explicit code which doesn't require comments. Comments suffer from rot and become obsolete soon after being written. Write comments only when you code fails to express itself.
217
+
218
+
IMPORTANT: If your code may create confusion for other developers, leaving a comment is mandatory.
219
+
220
+
Exception: comments used to generate documentation
0 commit comments