Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cz-customizable-ghooks

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cz-customizable-ghooks

Integrate [cz-customizable](https://github.com/leoforfree/cz-customizable) config with [ghooks](https://github.com/gtramontina/ghooks) or [husky](https://github.com/typicode/husky) to use a single configuration for commit message generation AND commit mes

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13K
increased by28.28%
Maintainers
1
Weekly downloads
 
Created
Source

cz-customizable-ghooks

Integrate cz-customizable config with ghooks or husky to use a single configuration for commit message generation AND commit message validation.

Build Status

NPM Version semantic-release Coverage Status Dependencies status Dev-dependencies status Commitizen friendly

Purpose

This package validates that a git commit message matches the rules defined in your cz-customizable config file (see cz-customizable). Example commit message rules.

Prerequisites

Make sure you have a git repository (git init) BEFORE installing ghooks, otherwise you have to take extra steps if you install ghooks before running git init.

Installation

This package is designed to be used in conjunction with commitizen, cz-customizable and either ghooks or husky.

  1. Install pre-requisites (if not already installed):
npm i commitizen -g
npm i cz-customizable cz-customizable-ghooks
  1. Configure cz-customizable in package.json:
"config": {
  "cz-customizable": {
    "config": "path/to/your/cz-customizable-rules.js"
  }
}
  1. Install ONE of these git hook packages:
ghooks
  1. Install ghooks:
npm i ghooks
  1. Configure package.json:
"config": {
  "ghooks": {
    "commit-msg": "cz-customizable-ghooks $2"
  }
}

An example of this setup is in examples/ghooks.

husky
  1. Install husky:
npm i husky
  1. Configure package.json:
  "husky": {
    "hooks": {
      "commitmsg": "cz-customizable-ghooks"
    }
  }

An example of this setup is in examples/husky.

Usage

Commit your changes to git as normal. If the commit message entered is invalid, the commit will be rejected with an error message (according to the rules specified in your cz-customizable config). Works with git command-line and visual Git tools (such as SourceTree).

Additional config

appendIssueFromBranchName

If this config value is set to true, the git branch name is queried, and an attempt is made to parse the branch name, looking for the ticketNumberPrefix and ticketNumberRegExp values. If found, they are appended to the commit message. If the branch name does not match the ticketNumberPrefix and ticketNumberRegExp expression, or if ticketNumberPrefix and ticketNumberRegExp are not provided, the full branch name is appended to the commit message.

This property was previously called appendBranchNameToCommitMessage.

Debugging

You can turn on debug logging by specifying LOGGING_LEVEL=debug before the cz-customizable-ghooks command.

Keywords

FAQs

Package last updated on 28 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc