3.5 KiB
Contributing
Thank you for your interest in contributing! Please feel free to put up a PR for any issue, feature request or enhancement.
Reporting issues & features requests
If you notice any bugs in the code, see some code that can be improved, or have features you would like to be added, please create a bug report or a feature request.
Working on issues
Please feel free to take on any issue that's currently open. Just send a comment in order to let us know you're working on it so we can assign that specific issue to you.
Submitting a pull request
Before working on a large change, the best practice is to open an issue first to discuss it with the maintainers or if an issue is already opened, comment your intention of opening up a PR.
When in doubt, keep your pull requests small. To give a PR the best chance of getting accepted, don't bundle more than one feature or bug fix per pull request. It's always best to create two smaller PRs than one big one.
Branch types
- Feature - New implementation code that is required for product development. Everything that is not considered a defect and brings value is considered a feature. Example: feature/add-vite
- Bug - Defects, either flagged by the QA team or any of the parties involved in the project, missing functionality or wrongly implemented functionality, they all fall into the “bug” category. Branches that solve such defects should be prefixed with the bug prefix. Example: bug/fix-slots
- Chore — Miscellaneous work not related to the project code. For example, updating node module versions, renaming an environment configuration file or removing unused variables. Example: chore/rename-config-file
- Docs — Any work that relates to project-level and code-level documentation. Whether it is work related to the project's README, or code-level documentation, branches that host this type of work should use this prefix. Example: docs/add-vite-info
Commit formatting
Every file changed should have its own commit message and each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
From the above template, only the header is mandatory (note: the scope of the header is not mandatory) and the header should not be longer than 100 characters!
Type
Can only be one of the following:
- build: Changes that affect the build system or external dependencies (example scopes: vue-cli, vite, npm)
- docs: Documentation only changes
- feat: A new feature
- fix: A bug fix
- perf: A code change that improves performance
- refactor: A code change that neither fixes a bug nor adds a feature
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- test: Adding missing tests or correcting existing tests
Scope
The scope should be the name of the npm package affected (as perceived by the person reading the changelog generated from commit messages).
Subject
The subject is a succinct description of what this commit does.
Body
A large detail, if needed, of what this commit does.
Footer
The footer should only contain a closing statement for an issue.
Samples:
docs(changelog): update changelog to v2.0.0
refactor: change sample data fecth
Sample data is only fetched once
Closes #2