-
Notifications
You must be signed in to change notification settings - Fork 0
Contribution
Carter edited this page Mar 7, 2025
·
7 revisions
If you're considering contributing to the project, then that's great. There are some recommendations I have for contributing.
- Look through past pull requests to get a feel of what kind of changes get accepted.
- Become familiar with this wiki.
- commit messages in this repository will follow the conventional commits specification
Here is the commit types for this repository:
| type | purpose |
|---|---|
| feat | a new feature was added |
| fix | a bug fix or patch |
| style | change the style of the code |
| rename | change the name of an object or entity |
| chore | a basic task that most be done iteratively |
| docfix | documentation refactor/correction |
| docadd | documentation addition |
| docrm | documentation removal |
| deploy | deployment configuration |
| config | general project configuration |
| comment | comments added to code |
| refractor | rework certain parts of code |
| redesign | rework the inherent design of the project |
| testadd | add tests |
| testfix | correct tests |