Comments
About how to write comments properly
1 How to write a comment
1.1 Overview
For each line, block of code, method, class, answer in a DIRECT, CLEAR style, no more than 3/5/10 words these three questions:
- What does this code do?
- For what use/need/feature/operation is this code?
- How does this code work, expression by expression?
1.2 Example
2 How to commit / pull-request
2.1 Commit
2.1.1 The commit type can include the following:
feat– a new feature is introduced with the changesfix– a bug fix has occurredchore– changes that do not relate to a fix or feature and don’t modify source or test files (for example updating dependencies)refactor– refactored code that neither fixes a bug nor adds a featuredocs– updates to documentation such as a the README or other markdown filesstyle– changes that do not affect the meaning of the code, likely related to code formatting such as white-space, missing semi-colons, and so on.test– including new or correcting previous testsperf– performance improvementsci– continuous integration relatedbuild– changes that affect the build system or external dependenciesrevert– reverts a previous commit
2.1.2 Style
Answer this questions in a DIRECT, CLEAR style, no more than 60 words. No ending in POINT, “.”
2.1.3 Example commits
#1 #feat: new css class to restyle#12 #chore: minor mistakes typos checked#33 #refactor: change components grid and names variables
2.1.3.1 add BREAKING CHANGE OR MINOR CHANGE
BREAKING CHANGE: a commit that has a
BREAKING CHANGE:, or appends a!after the type/scope, introduces a breaking API change (correlating withMAJORin Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.
2.1.4 references
url: https://semver.org/ title: “Semantic Versioning 2.0.0” description: “Semantic Versioning spec and website” host: semver.org
url: https://commitizen-tools.github.io/commitizen title: “Commitizen” description: “commit rules, semantic version, conventional commits” host: commitizen-tools.github.io favicon: assets/images/favicon.png
url: https://www.conventionalcommits.org/en/v1.0.0/ title: “Conventional Commits” description: “A specification for adding human and machine readable meaning to commit messages” host: www.conventionalcommits.org