@hulo/linux-i386
Version:
Hulo compiler for Linux (32-bit)
76 lines (52 loc) โข 1.86 kB
Markdown
# ๐ค 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 ๐