...
- Python is very explicit
- Dependent functions
- In test files, we've generally been putting the helper functions on top (which is reverse from his recommendations)
- But for other classes, we generally use the top-down approach.
- For xCode
- File hierarchy on disk is different from hierarchy in the IDE
- So needs to be manually updated
- Agree: Extra whitespace brings attention to wrong things
- Like: Breaking indentation always returning back to the indented form
- Agree: If statements not having braces
- In JS, variable declarations always on top because of scoping rules, but is it helpful for readability?
...