4 | | * Maximum Line Width is 100 Characters |
5 | | 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. |
6 | | |
7 | | * Use 4 Space Tabs to Indent |
8 | | With whitespace fillers. |
9 | | |
10 | | * No Trailing Whitespace |
11 | | |
12 | | * Follow the GNU-Style guidelines. We won't go through all of them here. |
| 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 to Indent. With whitespace fillers. |
| 6 | * No Trailing Whitespace |
| 7 | * Follow the GNU-Style guidelines. We won't go through all of them here. |