Thank you for helping out with Stallion CLI! We'd like to make contributions as pleasent as possible, so here's a small guide of how we see it. Happy to hear your feedback about anything, so please let us know.
Currently there are no tests configured but will be added soon
When you're sending a pull request:
- Communication is a key. If you want fix/add something, please open new/find existing issue, so we can discuss it.
- We prefer small pull requests focused on one change, as those are easier to test/check.
- Please make sure that all tests are passing on your local machine.
- Please make sure you've run formatters and linters locally.
- In VS Code, you can press ⇧+Alt+F or ⇧⌥F to format the current file.
- To format C++ and Objective-C files, make sure you have the C/C++ extension installed.
- To format JavaScript files, please install Prettier extension.
- From the command line, you can run
yarn format:candyarn format:jsto format C-based languages and JavaScript respectively. The first command requires that you've already installed ClangFormat.
- In VS Code, you can press ⇧+Alt+F or ⇧⌥F to format the current file.
- Follow the template when opening a PR.
All PRs are squashed into main branch and wrapped up in a single commit,
following
conventional commit message.
Combined with semantic versioning, this allows us to have
a frequent releases of the library.
Note: We don't force this convention on Pull Requests from contributors, but it's a clean way to see what type of changes are made, so feel free to follow it.
Most notably prefixes you'll see:
- fix: Bug fixes, triggers patch release
- feat: New feature implemented, triggers minor
- chore: Changes that are not affecting end user (CI config changes, scripts, "grunt work")
- docs: Documentation changes.
- perf: A code change that improves performance.
- refactor: A code change that neither fixes a bug nor adds a feature.
- test: Adding missing tests or correcting existing tests.
We use Semantic Release to automatically release
new versions of the library when changes are merged into main branch, which
we plan to keep stable. Bug fixes take priority in the release order.
You can report issues on our bug tracker. Please search for existing issues and follow the issue template when opening an one.
By contributing to Stallion CLI, you agree that your contributions will be licensed under the MIT license.