📒Development guidelines
In this section you will read about best practicies when adding new features to this project
Pull Requests
git checkout -b name_of_your_branch mainbuild: Changes that affect the build system or external dependencies (example scopes: cmake, npm)
ci: Changes to our CI configuration files and scripts (examples: GitHubActions)
docs: Documentation only changes
feat: A new feature
fix: A bug fix
perf: A code change that improves performance
refactor: A code change that neither fixes a bug nor adds a feature
test: Adding missing tests or correcting existing testsgit commit -m "feat: add sound when clicking a button" -SLast updated