How to add husky and commitlint to angular project

42 Views Asked by At

I'd like to use huksy and commitlint to my angular project.

How can I achieve this ?

1

There are 1 best solutions below

0
On

Install Husky

  1. Run npm i husky --save-dev
  2. Run npx husky init

The init command simplifies setting up husky in a project. It creates a pre-commit script in .husky/ and updates the prepare script in package.json. Modifications can be made later to suit your workflow. Husky doc

Install commitlint

  1. Run npm i @commitlint/cli @commitlint/config-conventional --save-dev
  2. Create a commitlint.config.js file at the root of the project.
module.exports = {
  extends: ['@commitlint/config-conventional'],
};
  1. in the .husky folder, add commit-msg file
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no-install commitlint --edit "$1"
  1. (optional) remove the pre-commit file if you do not have any test

Test it

  1. Just commit something, ex: git commit -m "Keep calm and commit"