Initial commit

This commit is contained in:
Oliver 2021-12-02 13:13:17 -06:00
commit f8910e4f30
28 changed files with 3111 additions and 0 deletions

11
style_guide.md Normal file
View file

@ -0,0 +1,11 @@
# Style Guide:
Variable naming: `snake_case`
Constant naming: `SCREAMING_SNAKE_CASE`
Functions should all be declared using `const` with fat-arrow syntax, and should be typed strictly.
All JSON data should be typed, and loaded by a function, not imported.
There should be two blank lines after copyright/author header.