# Contributing

Thank you for your interest in contributing.

## General

- Use **English** for all contributions (commits, branches, pull requests)
- Keep everything **concise and minimal**

---

## Branches

- The main branch is `master`
- Create branches from `master`
- Use clear and simple English names

Examples:

- feature/add-login
- fix/null-check
- refactor/simplify-logic

---

## Commit Messages

- Follow **Conventional Commits**
- Use **English**
- Keep messages **short and focused**
- Prefer **subject line only** (no body)

Examples:

- feat: add login feature
- fix: resolve null reference error
- refactor: simplify state handling
- docs: update README
- chore: update dependencies

Rules:

- 1 commit = 1 purpose
- Avoid long descriptions

---

## Pull Requests

- Use **English**
- Keep descriptions **short and clear**
- Link related issues if applicable

---

## CI / Checks

- Ensure CI passes before submitting a pull request
- Do not introduce breaking changes without clear intent

---

## Notes

- For large changes, please open an issue first
