Checkstyle plugin is used to validate code style. Check checkstyle/checkstyle.xml for more details.
Indentation
- Use spaces (tabs banned)
- 1 indent = 4 spaces
Field naming convention
- "hungarian" notation is banned
- ALL_CAPS for static final fields
- camelCase for naming (
_tolerable in test names)
Imports
*imports are banned
General
- line length =
100 - method declaration parameters =
Align when multiline - use interfaces only as types (no interface for constants)