Getting started
Install
Install @commitlint/cli
and a @commitlint/config-*
/ commitlint-config-*
of your choice as devDependency and configure commitlint
to use it.
sh
npm install -D @commitlint/cli @commitlint/config-conventional
sh
yarn add -D @commitlint/cli @commitlint/config-conventional
sh
pnpm add -D @commitlint/cli @commitlint/config-conventional
sh
bun add -d @commitlint/cli @commitlint/config-conventional
sh
deno add -D npm:@commitlint/cli npm:@commitlint/config-conventional
Configuration
Configure commitlint to use conventional config
sh
echo "export default { extends: ['@commitlint/config-conventional'] };" > commitlint.config.js
WARNING
Node v24 changes the way that modules are loaded, and this includes the commitlint config file. If your project does not contain a package.json
, commitlint may fail to load the config, resulting in a Please add rules to your commitlint.config.js
error message. This can be fixed by doing either of the following:
- Add a
package.json
file, declaring your project as an ES6 module. This can be done easily by runningnpm init es6
. - Rename the config file from
commitlint.config.js
tocommitlint.config.mjs
.
Refer to configuration documentation for more information.