Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.52 KB

CONTRIBUTING.md

File metadata and controls

46 lines (37 loc) · 1.52 KB

Contributing Guidelines

Thank you for considering to contribute to this project. This document specifies the guidelines that you should follow when contributing.

The following steps need to be followed for you to submit a successful PR. Please adhere to the guidelines in order for your PR's to get approved.

Steps for Contribution

  1. first fork this repo
  2. make a directory/folder on your local system and initial it,
mkdir <your directory name>
git init
  1. then clone this repository on your local system by running below command
git clone "your forked repo url"
  1. Work on the project
  2. after creating your changes and in order to add your changes run the following command
git add .
  1. Its time to commit the changes made
git commit -m "your valid commit message"
  1. then push the changes that you have made, run the below command,
git push -u origin main

General Rules :

These are general rules that you should follow when contributing to an Open Source project :

  • Be Nice, Be Respectful (BNBR)
  • Check if the issue you opened exists or not. If it exists do not reopen it.
  • While opening a new issue, make sure you describe the issue clearly.
  • Write proper commit messages and document your PR well.
  • Always add comments in your code and explain it at points, if possible add Doctest.
  • Always create a Pull Request from a new branch such as feature; do not create a PR from main.
  • Write clean code and follow proper coding conventions.

Thank you ❤