Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.15 KB

File metadata and controls

44 lines (32 loc) · 1.15 KB

Contributing

Thank you for your interest in contributing!

Getting Started

  1. Fork the repository
  2. Clone your fork locally
  3. Create a feature branch: git checkout -b feat/your-feature
  4. Make your changes
  5. Commit using conventional commits: type(scope): description
  6. Push and open a Pull Request

Commit Convention

We use Conventional Commits:

  • feat(scope): description — New feature
  • fix(scope): description — Bug fix
  • refactor(scope): description — Code refactoring
  • docs(scope): description — Documentation
  • test(scope): description — Tests
  • chore(scope): description — Maintenance
  • ci(scope): description — CI/CD changes

Code Style

  • Follow existing patterns in the codebase
  • Write clean, readable code
  • Add tests for new features
  • Ensure all tests pass before submitting

Pull Requests

  • Keep PRs focused and small
  • Write a clear description of changes
  • Reference related issues
  • Ensure CI checks pass

Issues

  • Use issue templates when available
  • Be descriptive and include reproduction steps for bugs
  • Check existing issues before creating duplicates