tonymilne / gint

A pluggable and configurable GIT linter tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gint npm version Build Status

A pluggable and configurable GIT linter tool

Gint can help with enforcing commit message patterns, branch sizes and heaps more.

Install

npm install gint --save-dev
# or 
yarn add gint --dev

Existing hooks aren't replaced

Uninstall

npm uninstall gint
# or
yarn remove gint

Usage

Gint requires you to create a configuration file named .gintrc in your project root. See example below.

{
  "rules": {
    "commit-message-pattern": ["error", "^\\[(patch|minor|major)\\]\\s.{3,}", "i"],
    "commit-min-len": ["error", 10],
    "commit-max-len": ["error", 512]
  }
}

Rules

Refer to rules documentation.

Git GUI clients support

If you've installed Node using the standard installer, nvm or homebrew, Git hooks will be executed in GUI applications.

Working with multiple version of Node

If nvm is installed, gint will try to use the default/current installed Node version or use the project .nvmrc.

Tip to use the system-installed version of node, nvm provides a system alias

See also

  • Husky - Heavily based on husky source code.

License

MIT

About

A pluggable and configurable GIT linter tool

License:MIT License


Languages

Language:JavaScript 94.4%Language:Shell 5.6%