We appreciate all kinds of contributions. As a contributor, here are the guidelines we would like you to follow:
If you find a bug in the design system documentation or a mistake in the sketch library file, you can help us by submitting an issue to our [GitHub Repository][github]. Including an issue reproduction is the absolute best way to help the team quickly diagnose the problem. Screenshots are also helpful.
You can request a new feature (new component, module or a new characteristic of one of them) by submitting an issue to our [GitHub Repository][github].
If your issue appears to be a bug or a new feature, and hasn't been reported, open a new issue. You can file new issues by providing the above information here.
See PROCESS.md
This project uses Conventional Commits to generate the changelog.
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
Any line of the commit message cannot be longer than 100 characters! This allows the message to be easier to read on GitHub as well as in various git tools.
Must be one of the following:
- feat: A new feature
- fix: A bug fix
- docs: Documentation only changes
The scope could be anything specifying place of the commit change. For example
website
, webapp
, mobile
The subject contains succinct description of the change:
- use the imperative, present tense: "change" not "changed" nor "changes"
- don't capitalize first letter
- no dot (.) at the end
Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes". The body should include the motivation for the change and contrast this with previous behavior.
The footer should contain any information about Breaking Changes and is also the place to reference GitHub issues that this commit Closes.
Breaking Changes should start with the word BREAKING CHANGE:
with a space or two newlines.
The rest of the commit message is then used for this.
Close issue. Want to close some issue with the commit use the word Closes
with a space and the issue number (e.g. Closes #39).