gitbox 2.1.3

Git toolbox to simplify adoption of conventional commits and semantic version, among other things.
Documentation
1
2
3
4
5
6
/// The list of already-defined commit types.
/// The order it is presented is a personal preference.
/// Source: https://www.conventionalcommits.org/en/v1.0.0/ .
pub const DEFAULT_COMMIT_TYPES: [&str; 10] = [
    "feat", "fix", "refactor", "test", "docs", "build", "perf", "style", "ci", "chore",
];