Initial commit: Upload Checkpoint project

This commit is contained in:
Caileb 2025-05-26 22:25:42 -05:00
commit c0e3781244
32 changed files with 6121 additions and 0 deletions

View file

@ -0,0 +1,16 @@
---
description:
globs:
alwaysApply: true
---
# Code Quality Standards
- Follow established industry best practices for each programming language
- Maintain consistent code style throughout the project
- Write self-documenting code with descriptive variable and function names
- Keep functions small and focused on a single responsibility
- Add appropriate error handling where necessary
- Include comments only for complex logic that requires additional context
- Write DRY (Don't Repeat Yourself) code that minimizes duplication
- Consider performance implications of implemented solutions