Thanks for your interest in contributing to Composables CLI.
Kindly read this before opening a pull request. Keep changes focused, prefer the smallest fix that fully solves the problem, and verify your work before handing it off.
If you run into an issue and need help, reach out to Alex Styl on X.
You can fork this repo by clicking the Fork button in the top right corner
or by clicking here.
git clone https://github.com/your-username/composables-cli.gitcd composables-cligit checkout -b my-new-branch./gradlew run --args="--help"Before opening a pull request, run ./gradlew test to run all tests locally.
Ensure that all tests are passing locally before submitting a pull request. If you are adding new functionality, make sure to include tests for it.
We use spotless for code formatting. Make sure to run ./gradlew spotlessCheck to verify that your code is well
formatted according to the project rules.
Use ./gradlew spotlessApply to fix any code formatting errors you spot.