Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.37 KB

CONTRIBUTING.md

File metadata and controls

47 lines (36 loc) · 1.37 KB

Contributing to the Leaderboard Project

Thank you for considering contributing to the Leaderboard project! We welcome your contributions to enhance the functionality and usability of this application.

How to Contribute

1. Fork the Repository

  • Click on the “Fork” button at the top right of the repository page.

2. Create a New Branch

  • Create a branch for your feature or bug fix:
    git checkout -b feature/YourFeatureName

3. Make Your Changes

  • Implement your changes and commit them with a descriptive message:
    git commit -m "Add your message here"

4. Push to Your Branch

  • Push your changes to your forked repository:
    git push origin feature/YourFeatureName

5. Create a Pull Request

  • Navigate to the original repository and click on "New Pull Request."
  • Select your branch and provide a detailed description of your changes.

Coding Standards

  • Follow consistent coding style throughout the project.
  • Use meaningful variable and function names.
  • Comment your code where necessary for clarity.

Testing

  • Please ensure that your changes pass existing tests and add new tests if you are implementing new features.
  • Run the tests using:
    npm test

Thank You!

Your contributions help make this project better for everyone. Happy coding!