This contribution guideline is derived from the Vue.js, Atom, Starship and Convetional Commits contribution guidelines.
🎉 First of all, thank you so much for taking the time to contribute! 🎉
Secondly, before submitting your contribution, please make sure to take a moment and read through the guidelines:
This project and everyone participating in it is governed by the Contributor Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to our community chat.
The issue list is reserved exclusively for bug reports and feature requests. For usage questions, please use the following resources:
- Read the docs
- Ask at the community's chat
Also try to search for your issue - it may have already been answered or even fixed in the development branch. However, if you find that an old, closed issue still persists in the latest version, you should open a new issue using the form below instead of commenting on the old issue.
We use the GitHub flow as main versioning workflow:
- Fork this repository
- Create a new branch for each feature, fix or improvement, off of
master
:git checkout -b my-feature-branch
- Make some changes, committing them along the way (make sure to follow the Commit Convention guidelines)
- When your changes are ready for review, push your branch:
git push origin my-feature-branch
- Create a pull request from your branch to
lcbm/master
(make sure to fill in all Pull Request requirements) - No need to assign the pull request to anyone, we'll review it when we can
- When the changes have been reviewed and approved, if there are no conflicts with the
master
branch, someone will rebase and merge for you. If there are conflicts, go to step 8 - If your branch has conflicts with the
master
branch, use interactive rebase to resolve conflicts:git rebase master -i
, thengit push -f
to update your branch (this automatically updates the pull request)
It is very important to separate new features or improvements into separate feature branches, and to send a pull request for each branch. This allow us to review and pull in new features or improvements individually.
You must agree that your patch will be licensed under the repository's license, and when we change the license we will assume that you agreed with the change unless you object.