Contributing to Balatro TUI
June 25, 2025 ยท View on GitHub
Thank you for your interest in contributing to Balatro TUI! Your help is greatly appreciated. Please follow these guidelines to make the process smooth for everyone.
How to Contribute
-
Fork the repository and create your branch from
master. -
Clone your fork and set up the project:
git clone https://github.com/Passeriform/BalatroTUI.git cd BalatroTUI cargo build -
Make your changes in a new branch:
git checkout -b my-feature -
Test your changes:
cargo test -
Commit and push your changes:
git add . git commit -m "[Meta] Describe your change" git push origin my-featureThis repository doesn't use conventional commits. Consider formatting the commit message by category
[<category>] <message> -
Open a Pull Request on GitHub and describe your changes.
Code Style
- Follow Rust's standard formatting:
cargo fmt - Run
cargo clippyto catch common mistakes - Write clear, concise commit messages
Reporting Issues
If you find a bug or have a feature request, please open an issue with details and steps to reproduce.
Code of Conduct
Be respectful and constructive. Harassment or abusive behavior will not be tolerated.
Thank you for helping make Balatro TUI better!