Skip to content

Commit

Permalink
document naming conventions #4 #30
Browse files Browse the repository at this point in the history
  • Loading branch information
blahosyl committed Apr 14, 2024
1 parent 6f9b4ee commit a4c3bfe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ Which libraries are used and what their purpose is, why they are needed

## Testing

### User story testing

### Code validation

#### Naming conventions used

- all class names are in `CamelCase`.
- all constant names are in `ALL_CAPS`.
- all variable names are in `snake_case`.
- following my mentor's suggestion, I changed the names of global variables (that are not constants) so that they always start with an underscore: `_global_variable`


### User input

#### Y/N questions
Expand Down

0 comments on commit a4c3bfe

Please sign in to comment.