- Check if it isin't publicaded on the issues list
- Post it on the issues list following the pattern
- Check if it isin't publicaded on the issues list
- Post it on the issues list following the pattern
- Create a pull request following the pattern
contact @Peedrooo for any quest = )
- Branch Names
Use descriptive names for branches (e.g., feature/new-login-page).
-
Branch Creation Create a branch for every new feature or bugfix. Ensure an associated issue or user story exists before creating a branch.
-
Commit patterns
Use Conventional Commits for commit specification.
The commit message should be structured as follows:
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
The commit contains the following structural elements, to communicate intent to the consumers of your library:
- fix: a commit of the type fix patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).
- feat: a commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).
- BREAKING CHANGE: a commit that has a footer BREAKING CHANGE:, or appends a ! after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.
- types other than fix: and feat: are allowed, for example @commitlint/config-conventional (based on the Angular convention) recommends build:, chore:, ci:, docs:, style:, refactor:, perf:, test:, and others.
- footers other than BREAKING CHANGE: may be provided and follow a convention similar to git trailer format.
-
Issue Tracking Connect each branch to a specific issue or user story.
-
Pull Request (PR)
Follow the pattern while creating PR's
Follow the PR process:
- Conduct a code review.
- Test your changes.
-
Code Quality Maintain coding standards. Include tests. Run code linters.
-
Documentation Keep documentation up-to-date with code changes.