-
Notifications
You must be signed in to change notification settings - Fork 26
Coding Standards
swalker2m edited this page Oct 28, 2014
·
3 revisions
Let's make a list of standards we'd like to suggest/discuss, and maybe we can narrow it down to a solid list when everyone is back in town.
Use spaces because inevitably someone will edit or view your code with a different setting than you have for the number of spaces per tab. If you like hitting tab, consider configuring your editor to insert the appropriate number of spaces when tab is pressed.
- Make everything
final
when possible. - All classes are either
abstract
orfinal
.