Thank you for considering contributing to the Leaderboard project! We welcome your contributions to enhance the functionality and usability of this application.
- Click on the “Fork” button at the top right of the repository page.
- Create a branch for your feature or bug fix:
git checkout -b feature/YourFeatureName
- Implement your changes and commit them with a descriptive message:
git commit -m "Add your message here"
- Push your changes to your forked repository:
git push origin feature/YourFeatureName
- Navigate to the original repository and click on "New Pull Request."
- Select your branch and provide a detailed description of your changes.
- Follow consistent coding style throughout the project.
- Use meaningful variable and function names.
- Comment your code where necessary for clarity.
- Please ensure that your changes pass existing tests and add new tests if you are implementing new features.
- Run the tests using:
npm test
Your contributions help make this project better for everyone. Happy coding!