You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git init # if git is not initialized
npm init -y # if project doesn't contain package.json# for linux/mac
npm i -D @commitlint/{cli,config-conventional}
# for windows
npm i -D @commitlint/cli @commitlint/config-conventional
echo"{ \"extends\": [\"@commitlint/config-conventional\"] }"> .commitlintrc.json
npm i -D husky