You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@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


Version published
Maintainers
3
Created

Readme

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

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc