What is the recommended way to add emoji's to commitizen config

139 Views Asked by At

I am using Commitizen, cz-conventional-changelog and Husky to get conventional commits and get the prompts in terminal when doing a commit.

In package.json have this config:

"config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-emoji"
    }
  },

In commitlint.config.cjs: module.exports = { extends: ['@commitlint/config-conventional'] };

In .husky folder:

commit-msg file:

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

prepare-commit-msg file:

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

exec < /dev/tty && npx git-cz --hook || true

npx commitlint --edit $1

What is the recommended way to add emojis to commitizen config?

0

There are 0 best solutions below