🎉 Contributions are always welcome, no matter how large or small. Before contributing, please read the code of conduct.
Some thoughts to help you contribute to this project:
- 📸 Always leave screenshots for visual changes.
- 📝 Always leave a detailed description in the pull request. Leave nothing ambiguous for the reviewer.
- 💻 Always review your code first. Do this by leaving comments in your coding noting questions or interesting things for the reviewer.
- 🤝 Always communicate. Whether it is in the issue or the pull request, keeping the lines of communication helps everyone around you.
$ git clone https://github.com/itsbrex/<repository-name>
$ cd <repository-name>
$ npm install$ npm run buildFor running the test suite, use the following command. Since the tests run in watch mode by default, some users may encounter errors about too many files being open. In this case, it may be beneficial to install watchman.
# the tests will run in watch mode by default
$ npm run testWe actively welcome your pull requests, however linking your work to an existing issue is preferred.
- 🍴 Fork the repo and create your branch from
main. - 📛 Name your branch something that is descriptive to the work you are doing, for example, "adds-new-thing" or "fixes-mobile".
- 🧪 If you've added code that should be tested, add tests.
- 📖 If you've changed APIs, update the documentation.
- 📸 If you make visual changes, screenshots are required.
- ✔️ Ensure the test suite passes.
- 🚨 Make sure you address any lint warnings.
- 🚀 If you make the existing code better, please let us know in your PR description.
- 📝 A PR description and title are required. The title is required to begin with: "feat:" or "fix:"
- 🔗 Link to an issue in the project. Unsolicited code is welcomed, but an issue is required to announce your intentions. PRs without a linked issue will be marked invalid and closed.
Examples for valid PR titles:
- fix: Correct typo.
- feat: Add support for Node 12.
- refactor!: Drop support for Node 6.
Note that since PR titles only have a single line, you have to use the ! syntax for breaking changes.
See Conventional Commits for more examples.
GitHub has support for draft pull requests, which will disable the merge button until the PR is marked as ready for merge.
If you plan to contribute a change based on an open issue, please assign yourself by commenting on the following word .take. Issues that are not assigned are assumed open, and to avoid conflicts, please assign yourself before beginning work on any issues.
If you would like to contribute to the project for the first time, please consider checking the bug or good first issue labels.