Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

37 lines (32 loc) · 1.17 KB

Contributing to ResuShape

We welcome contributions from everyone. By participating in this project, you agree to abide by our Code of Conduct.

How to Contribute

  1. Fork the repository on GitHub.
  2. Clone your forked repository to your local machine:
    git clone https://github.com/your-username/resushape.git
  3. Create a new branch for your changes:
    git checkout -b feature-branch
  4. Make your changes.
  5. Commit your changes:
    git add .
    git commit -m "Description of the changes"
  6. Push to your branch:
    git push origin feature-branch
  7. Create a Pull Request to the development branch on GitHub.

Reporting Bugs

If you find a bug, please create an issue on GitHub with detailed information about how to reproduce it.

Suggesting Enhancements

We encourage you to propose enhancements and improvements. Please create an issue on GitHub with your suggestions.

Code Style

Please ensure your code adheres to our style guidelines:

  • Use 4 spaces for indentation.
  • Use descriptive variable and function names.
  • Include comments to explain your code where necessary.