docs: update CONTRIBUTIING.md

This commit is contained in:
leafspark 2024-08-04 19:18:52 -07:00 committed by GitHub
parent 757fbb34ec
commit e4543784ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 0 deletions

View File

@ -31,6 +31,21 @@ ### Git Commit Messages
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
- Limit the first line to 72 characters or less
### Commit Types:
```
feat: Added new feature
fix: Fixed a bug
docs: Updated documentation
style: Code style changes (formatting, etc.)
refactor: Code refactoring
perf: Performance improvements
test: Added or modified tests
build: Changes to build system or external dependencies
ci: Changes to CI configuration files and scripts
chore: Other changes that don't modify src or test files
```
### Python Styleguide
- Follow PEP 8