Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 596 Bytes

FORMATTING.MD

File metadata and controls

22 lines (12 loc) · 596 Bytes

Formatting

This document contains the fomatting rules for the code in this repository.

General rules

We will not use any special characters in our code

Variables

We will use CamelCase equivilant of the class name for variables. If there are multiple variables of the same class in a program, either use an identifying characteristic

Okay: motor, dcMotor, motorFL Not okay: Motor, motor123!, dCmOtoR

Classes

Classes will be named with PascalCase, and normally be around 1 to 3 words in length

Okay: Motor, DCMotor Not Okay: DirectCurrentMotorDeviceFromGoBildaWithAnRPMOf7000RPM