Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 1.45 KB

File metadata and controls

63 lines (42 loc) · 1.45 KB

CONTRIBUTION GUIDELINES

Thank you for considering contributing to this project! Please follow these guidelines to help us maintain a high-quality codebase.

How to Contribute

  1. Fork the repository
    Click the "Fork" button at the top right of the repository page.

  2. Clone your fork

    git clone https://github.com/your-username/twitter-clone.git
  3. Create a new branch

    git checkout -b feat/your-feature-name
  4. Make your changes

    • Write clear, concise code.
    • Follow the existing code style.
  5. Commit your changes

    git commit -m "Describe your changes"
  6. Push to your fork

    git push origin feature/your-feature-name
  7. Open a Pull Request

    • Go to the original repository.
    • Click "Compare & pull request".
    • Fill out the PR template and describe your changes.

Code Style

  • Use Prettier for code formatting.
  • Write TypeScript where possible.
  • Use descriptive variable and function names.

Pull Request Guidelines

  • Ensure your branch is up to date with main.
  • Reference related issues in your PR description.
  • Include screenshots for UI changes.
  • Make sure all tests pass before submitting.

Reporting Issues

  • Use GitHub Issues for bugs and feature requests.
  • Provide as much detail as possible.

Thank you for helping improve this project!