Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.79 KB

CONTRIBUTING.md

File metadata and controls

53 lines (40 loc) · 1.79 KB

Contributing to zig-esp-idf-sample

Thank you for considering contributing to zig-esp-idf-sample!

How Can You Contribute?

Reporting Bugs

If you find a bug, please report it by opening an issue in the Issues section. Please include:

  • A clear and descriptive title.
  • A detailed description of the bug.
  • Steps to reproduce the bug.
  • Any relevant log output.

Suggesting Enhancements

Enhancement suggestions are welcome. Please submit a detailed proposal in the Issues section, including:

  • A clear and descriptive title.
  • A detailed description of the proposed enhancement.
  • The rationale for the enhancement.
  • Examples of how the enhancement would be useful.

Submitting Pull Requests

  1. Fork the Repository: Click on the "Fork" button at the top right of the repository page.
  2. Clone Your Fork:
    git clone https://github.com/your-username/zig-esp-idf-sample.git
  3. Create a Branch:
    git checkout -b feature/your-feature-name
  4. Make Changes: Implement your changes in the new branch.
  5. Commit Changes:
    git commit -m "Description of the feature or fix"
  6. Push to Your Fork:
    git push origin feature/your-feature-name
  7. Create a Pull Request: Go to the original repository and click on "Compare & pull request". Fill out the necessary information and submit.

Code Style

Please ensure your code follows these guidelines:

  • See Zig - Style Guide
  • Include comments and documentation as necessary.
  • Write tests for new features and bug fixes where applicable.