Changes between Version 15 and Version 16 of Hacking
- Timestamp:
- 02/16/11 10:24:40 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hacking
v15 v16 2 2 == Code Style == 3 3 4 * Maximum Line Width is 100 Characters.The reason is not about people with low-res screens but rather sticking to 100 columns prevents you from easily nesting more than one level of if statements or other code blocks.5 * Use 4 Space Tabs with whitespace fillers to Indent. Never use tabs.4 * Maximum line width is 100 characters. The reason is not about people with low-res screens but rather sticking to 100 columns prevents you from easily nesting more than one level of if statements or other code blocks. 5 * Use 4 space Tabs with whitespace fillers to Indent. Never use tabs. 6 6 * No Trailing Whitespace 7 * Follow the GNU-Style guidelines. We won't go through all of them here. 8 7 * Follow the GNU-Style guidelines. 9 8 10 9 Please use the same indentation as other developers.