Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.22 KB

CONTRIBUTING.md

File metadata and controls

51 lines (39 loc) · 1.22 KB

Contributing to @siteed/universe

First off, thank you for considering contributing to @siteed/universe!

Table of Contents

Development Process

  1. Fork & Clone

    git clone https://github.com/yourusername/universe.git
    cd universe
    pnpm install
  2. Branch

    • Feature branches: feature/your-feature-name
    • Bug fixes: fix/issue-description
    • Documentation: docs/what-you-are-documenting
  3. Develop

    • Make your changes
    • Follow the coding standards
    • Add tests
    • Update documentation
  4. Commit We use conventional commits. Format your commit messages as:

    type(scope): description
    
    [optional body]
    
    [optional footer]
    

    Types: feat, fix, docs, style, refactor, test, chore

  5. Submit PR

    • Ensure all tests pass
    • Fill out the PR template
    • Link related issues

Thank you for contributing! 🙏