Contribution Guide
Project overview
Wonkle projects can be roughly broken down into 5 parts:
- PCB - Electronics that powers the device
- Firmware - Software that controls the electronics
- 3D models - Designs for the 3D-printed case
- Driver - Device driver that allows you to use the
- Website - Website for purchasing and configuring the device
- Docs - Information & Resources (hint: You are reading it)
Setting up development environment
For tablet driver
- Clone the git repositorybash
git clone https://github.com/wonkleio/OpenTabletDriver - Follow
CONTRIBUTING.md - Send Pull request to
masterbranch when contributing
For everything else
- Clone the git repositorybash
git clone https://github.com/wonkleio/wonkle - Follow
README.mdof the sub-project you want to work on (e.g.docs/README.md) - Send pull request to
devbranch when contributing
Contribution standards
AI
- ✅ OK - Using AI to write code
- ✅ OK - Using AI to help you analyze/understand
- ❌ NOT OK - Using AI to write text
- This applies to, but not limited to code comments, HTML contents, documentations, commit messages, and Pull request descriptions
- ❌ NOT OK - Using AI to make slop
- 1 year ban from the project for repeated violations
- Please review your changes before sending a pull request.
Communication, communication, communication
Remember, people can't read your mind. If you did something amazing and you want others to care about it, explain your intent and motivation using fact and logic so anyone with three digit IQ can understand them. You don't necessarily have to dumb things down. Just be clear about it.
Formatting
All text-based files must be formatted using the correct formatter. See .vscode/settings.json for more info.
line length
All human-written text files must have 100 characters or less per line unless absolutely necessary. When using vscode, there should be a line that indicates where the limit is.
Commits messages
Commit messages must be specific and concise. Prepend scope if necessary.
For example:
remove unused filesfirmware: add more test cases for functionNameweb: bump packageName version from v6 to v9