Skip to content

Latest commit

 

History

History
67 lines (52 loc) · 2.15 KB

Contributing.md

File metadata and controls

67 lines (52 loc) · 2.15 KB

Contributing to Cf_Helper

We are excited that you want to contribute to cf-helper! This document will guide you through the contribution process, from reporting issues to submitting pull requests.

Table of Content


How to Contribute

You can contribute in several ways

  1. Reporting bugs.
  2. Suggesting new features.
  3. Submitting pull requests with fixes or improvements.
  4. Improving documentation.

We welcome all contributions, but please ensure that your pull requests align with the project's vision and coding standards.

Reporting Bugs

If you find a bug, please open an issue and include:

  • A clear title and description.
  • Steps to reproduce the bug.
  • Expected Behavior.
  • Relevant logs, screenshots, or code snippets if available.

Suggesting Features

Feature suggestions are welcome! Please open an issue and provide:

  • A detailed description of the feature.
  • Use cases for the feature.
  • Any screenshots, if applicable.

Pull Request Process

  1. Fork the repository and create your branch from main:

    git checkout -b feature/new-feature
    
  2. Commit your changes with clear and descriptive commit messages:

    git commit -m "Add feature: implement pagination"
    
  3. Push your branch to your forked repository:

     git push origin feature/new-feature
    
  4. Open a pull request:

  • Ensure your pull request title and description are clear.
  • Reference any related issues or feature requests.
  • Tag reviewers, if necessary.

Contribution Guidelines

  • Make sure your code follows the project’s coding conventions.
  • Write clear and concise commit messages.
  • Test your changes before submitting.
  • If you're working on a big feature, it’s a good idea to first open an issue to discuss it.

Documentation

Update documentation as necessary for any changes you make. This includes updating the README.md file and any other relevant documentation files