Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 885 Bytes

File metadata and controls

41 lines (30 loc) · 885 Bytes

Contributing to eBrowser

Thank you for your interest in contributing!

Getting Started

  1. Fork the repository
  2. Create a feature branch: git checkout -b feat/my-feature
  3. Make your changes
  4. Run the build and tests locally
  5. Submit a pull request

Development Setup

git clone https://github.com/embeddedos-org/eBrowser.git
cd eBrowser
cmake -B build
cmake --build build
ctest --test-dir build --output-on-failure

Code Guidelines

  • Standard: C11
  • Warnings: -Wall -Wextra must compile clean
  • Naming: snake_case for all identifiers
  • Types: Use <stdint.h> types

Commit Messages

Follow Conventional Commits:

feat: add new feature
fix: resolve bug
docs: update documentation

License

By contributing, you agree that your contributions will be licensed under the MIT License.