Skip to content

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.

Spaces vs Tabs

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.

Java

  • Make everything final when possible.
  • All classes are either abstract or final.

Scala