We welcome contributions to the ESP Serial Flasher project! This guide will help you get started with contributing.
Please open an issue first to discuss whether your proposed change could be accepted. This helps ensure that:
- Your contribution aligns with the project's goals
- You don't spend time on changes that might not be merged
- We can provide guidance on the best implementation approach
- Use GitHub Issues
- Check if the issue has already been reported
- Provide detailed reproduction steps
- Include relevant system information (OS, toolchain versions, etc.)
- Use GitHub Issues
- Describe the use case and motivation
- Explain the expected behavior
- Follow the guidelines below for code contributions
- Reference the related issue in your PR description
Follow the ESP-IDF project's contribution guidelines, which include:
- Code formatting standards
- Naming conventions
- Documentation requirements
Use Conventional Commits format:
type(scope): description
[optional body]
[optional footer(s)]
Examples:
feat(uart): Add support for custom baud rates
fix(spi): Resolve timing issue with fast flash chips
docs(readme): Update installation instructions
We use pre-commit to automatically enforce code quality standards:
pip install pre-commit
pre-commit installThis will automatically run linters and formatters on your code before each commit.
- Update relevant documentation files when making changes
- Follow the Espressif Manual of Style
- Ensure all code examples are tested and working
- Bug reports: GitHub Issues
- Development questions: Open an issue with the "question" label
By contributing to this project, you agree that your contributions will be licensed under the same Apache 2.0 License that covers the project.