Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.06 KB

STYLE GUIDE.md

File metadata and controls

29 lines (21 loc) · 1.06 KB

Style Guidelines

Please adhere to all style guidelines as failure to do so will result in denied pull requests.

  1. If a new feature or enhancement requires a new class or tester, use the following format at the beginning of the file. Dotted lines should be all the way to hard-wrap limit.
/*
   *************************************************************************************************
   Program: "INSERT CLASS NAME".java
   Repository Name: Reboot
   Date Created: "INSERT DATE CREATED"
   Program Description: "INSERT PROGRAM DESCRIPTION"
   *************************************************************************************************
*/
  1. Use a preferred line length of 80 and hard-wrap of 100.

  2. Try to keep methods to a maximum of 30 lines.

  3. Put spaces around all operator symbols. That includes arithmetic operators and colons.

for (RotaryFormRecord record : table) {
  1. Add space after any comma.

  2. USE GENERAL GOOD CODING PRACTICES. Reference the Google Java Style Guide