You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@tophat/commitlint-config

Package Overview
Dependencies
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tophat/commitlint-config

Top Hat's config for commitlint

1.0.2
latest
Source
npm
Version published
Weekly downloads
501
31.15%
Maintainers
3
Weekly downloads
 
Created
Source

@tophat/commitlint-config

npm version npm downloads

Top Hat's shareable configuration for commitlint

Installation

Using Yarn:

yarn add @tophat/commitlint-config --dev

Or using npm:

npm install @tophat/commitlint-config --save-dev

Usage

Make sure you have commitlint setup in your repo

Create a file called commitlint.config.js and add the following snippet to it:

module.exports = {
    extends: ['@tophat/commitlint-config']
}

[Optional] Create a pre commit hook using husky to enforce automatic linting for every commit by adding this to your package.json file

{
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  }
}

Git hooks can get parameters via command-line arguments and stdin. Husky makes them accessible to commitlint via HUSKY_GIT_PARAMS.

Rules

Problems

The following rules are considered problems for @tophat/commitlint-config and will yield a non-zero exit code when not met.

type-enum

  • condition: type is found in value

  • rule: always

  • value

    [
      'wip',
      'feat',
      'fix',
      'cr',
      'style',
      'refactor',
      'perf',
      'docs',
      'test'
      'revert',
      'build',
      'ci',
      'chore',
    ]
    

Examples

echo "foo: some message" # fails
echo "fix: some message" # passes

header-max-length

  • condition: header has value or less characters
  • rule: always
  • value
  72

Examples

echo "fix: some message that is way too long and breaks the line max-length by several characters" # fails
echo "fix: some message" # passes

subject-empty

  • condition: subject is empty
  • rule: never

Examples

echo "fix:" # fails
echo "fix: some message" # passes

type-case

  • condition: type is in case value
  • rule: always
  'lower-case'

Examples

echo "FIX(scope): some message" # fails
echo "fix(scope): some message" # passes

type-empty

  • condition: type is empty
  • rule: never

Examples

echo ": some message" # fails
echo "fix: some message" # passes

Warnings

The following rules are considered warnings for @tophat/commitlint-config. Commitlint will pass but generate warnings if these conditions are not met.

body-leading-blank

  • condition: body begins with blank line
  • rule: always
  • condition: footer begins with blank line
  • rule: always

FAQs

Package last updated on 08 Nov 2022

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