UNPKG

@hulo/linux-i386

Version:

Hulo compiler for Linux (32-bit)

76 lines (52 loc) โ€ข 1.86 kB
# ๐Ÿค Contributing to Hulo Thank you for your interest in contributing to **Hulo**! We welcome all contributions โ€” code, documentation, bug reports, suggestions, and more. --- ## ๐Ÿงฐ Getting Started ### 1. Fork the Repository Click the **Fork** button at the top right of this page and clone your fork: ```sh git clone https://github.com/<your-username>/hulo.git cd hulo ``` 2. Install Dependencies Make sure you have the required tools installed: * Go (version 1.23.5 or higher) Then run: ```sh go mod tidy ``` ## ๐Ÿš€ Contribution Types Here are some ways you can help: - ๐Ÿž **Report bugs** โ€“ open an issue - โœจ **Request features** โ€“ propose ideas via issues - ๐Ÿ’ป **Contribute code** โ€“ bug fixes, new features, or enhancements - ๐Ÿ“– **Improve docs** โ€“ fix typos, write tutorials, or translate content - ๐Ÿ”Œ **Write plugins/tools** โ€“ expand the ecosystem ## ๐Ÿ“ฆ Making a Pull Request Create a new branch: ```sh git checkout -b fix/my-bug-fix ``` Commit your changes: ```sh git commit -m "fix: correct output path resolution" ``` Push your branch: ```sh git push origin fix/my-bug-fix ``` Open a Pull Request on GitHub. Please make sure your code: - Is well-formatted and readable - Passes all tests (if applicable) - Includes related documentation updates if needed ## ๐Ÿงช Code Style & Testing Follow the code style conventions in the repository. Run tests locally before pushing. Use descriptive commit messages (`feat:`, `fix:`, `chore:` etc.). ## ๐Ÿ™ Code of Conduct Be respectful and constructive. We follow a [Code of Conduct](CODE_OF_CONDUCT.md) to foster a welcoming community. ## ๐Ÿ’ฌ Questions? Feel free to reach out by opening an issue or joining our community discussions. Thanks again for being part of the Hulo journey ๐Ÿš€