Skip to content

Code Style

Kevin Herron edited this page Jul 7, 2016 · 1 revision

Editor Width

120 characters. When possible, use the full width only for longer method signatures.

Indentation

All indentation is done using 4-spaces, including multi-line continuation indentation.

Import Order

  1. java.* imports
  2. javax.* imports
  3. other imports
  4. static imports

Never use wildcard (*) imports.

Clone this wiki locally