This guide ensures contributions are consistent, readable, and maintainable.
We strictly use GitHub Issues and Pull Requests (PRs). No direct commits to main are allowed.
Before contributing, make sure there is an open issue for your task. If not, create one using the provided templates:
Each contribution must be developed in a dedicated branch. Branches and Pull Requests must follow this naming convention:
Feature | Fix | Refactor | Docs | Test | CICore | Audio | Input | Network | Renderer | WindowThis ensures consistency across branches and PRs, making it easy to identify the purpose of each contribution at a glance.
| Commit Type | Description |
|---|---|
| build | Changes that affect the build system or external dependencies (npm, make, etc.) |
| ci | Changes related to integration files and scripts or configuration (Travis, Ansible, BrowserStack, etc.) |
| feat | Addition of a new feature |
| fix | Bug fix |
| perf | Performance improvements |
| refactor | Modification that neither adds a new feature nor improves performance |
| style | Change that does not affect functionality or semantics (indentation, formatting, adding space, renaming a variable, etc.) |
| docs | Writing or updating documentation |
| test | Addition or modification of tests |