What is @commitlint/config-conventional?
The @commitlint/config-conventional npm package is used to enforce conventional commit messages. This package provides a set of rules that follow the Conventional Commits specification, which standardizes commit messages to make them more readable and to facilitate automatic generation of changelogs.
What are @commitlint/config-conventional's main functionalities?
Enforcing commit message structure
This code snippet is a configuration file that extends the rules from @commitlint/config-conventional. It is used to enforce a conventional commit message structure in your project.
module.exports = {extends: ['@commitlint/config-conventional']};
Linting commit messages
This command line example demonstrates how to lint a commit message using commitlint with the conventional configuration. It will check if the message follows the conventional commit format.
echo 'fix: correct minor typos in code' | npx commitlint
Integrating with commit hooks
This code snippet shows how to integrate commitlint with Husky's commit-msg hook to automatically lint each commit message before it is finalized.
husky add .husky/commit-msg 'npx --no-install commitlint --edit "$1"'
Other packages similar to @commitlint/config-conventional
standard-version
Similar to @commitlint/config-conventional, standard-version is a utility for versioning using semver and CHANGELOG generation powered by Conventional Commits. It differs in that it focuses on versioning and changelog generation rather than linting commit messages.
semantic-release
semantic-release automates the versioning and package publishing process based on semantic versioning and Conventional Commits, similar to @commitlint/config-conventional's adherence to the Conventional Commits specification. However, semantic-release encompasses the full release process, including determining the next version number, generating release notes, and publishing the package.
commitizen
commitizen is a tool that prompts developers to follow the Conventional Commits format when creating commit messages. It is complementary to @commitlint/config-conventional, which lints commit messages, whereas commitizen helps in crafting them.
Lint your conventional commits
@commitlint/config-conventional
Shareable commitlint
config enforcing conventional commits.
Use with @commitlint/cli and @commitlint/prompt-cli.
:warning: | |
---|
IMPORTANT | This is a direct replacement for @commitlint/config-angular prior to version 4. config-angular diverged from the conventional commit convention as of version 5. See #146 for details. |
Getting started
npm install --save-dev @commitlint/config-conventional @commitlint/cli
echo "module.exports = {extends: ['@commitlint/config-conventional']};" > commitlint.config.js
Rules
Problems
The following rules are considered problems for @commitlint/config-conventional
and will yield a non-zero exit code when not met.
Consult docs/rules for a list of available rules.
type-enum
-
condition: type
is found in value
-
rule: always
-
value
[
'build',
'ci',
'chore',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test'
]
echo "foo: some message"
echo "fix: some message"
type-case
- description:
type
is in case value
- rule:
always
- value
'lowerCase'
echo "FIX: some message"
echo "fix: some message"
type-empty
- condition:
type
is empty - rule:
never
echo ": some message"
echo "fix: some message"
scope-case
- condition:
scope
is in case value
- rule:
always
'lowerCase'
echo "fix(SCOPE): some message"
echo "fix(scope): some message"
subject-case
- condition:
subject
is in one of the cases ['sentence-case', 'start-case', 'pascal-case', 'upper-case']
- rule:
never
echo "fix(SCOPE): Some message"
echo "fix(SCOPE): Some Message"
echo "fix(SCOPE): SomeMessage"
echo "fix(SCOPE): SOMEMESSAGE"
echo "fix(scope): some message"
echo "fix(scope): some Message"
subject-empty
- condition:
subject
is empty - rule:
never
echo "fix:"
echo "fix: some message"
subject-full-stop
- condition:
subject
ends with value
- rule:
never
- value
'.'
echo "fix: some message."
echo "fix: some message"
- condition:
header
has value
or less characters - rule:
always
- value
72
echo "fix: some message that is way too long and breaks the line max-length by several characters"
echo "fix: some message"