first implementation

This commit is contained in:
counterweight 2025-12-20 22:18:14 +01:00
parent 1eb4641ed9
commit a56a4c076a
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
14 changed files with 898 additions and 729 deletions

View file

@ -7,3 +7,4 @@ alwaysApply: false
- Use docstrings following the style of the existing code.
- Avoid bloaty comments. Instead, favour using descriptive functions and variable names to make what's happening obvious.
- Use tests frequently to detect errors early. Make sure that tests are kept up to date. Remove dead code tests when removing code.
- Avoid using comments to divide sections of code. If you feel that is necessary, you probably should break into multiple files instead.