Socket
Socket
Sign inDemoInstall

@lmc-eu/commitlint-config

Package Overview
Dependencies
2
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @lmc-eu/commitlint-config

LMC's configuration for commitlint


Version published
Weekly downloads
612
increased by36.91%
Maintainers
1
Install size
63.5 kB
Created
Weekly downloads
 

Readme

Source

@lmc-eu/commitlint-config

LMC’s config for commitlint

Configurations

@lmc-eu/commitlint-config (default config)

Suitable for all projects.

Usage

Installation

npm i --dev @commitlint/cli @lmc-eu/commitlint-config

Configuration

Create a .commitlintrc.js file with the following contents:

'use strict';

module.exports = {
  extends: ['@lmc-eu/commitlint-config'],
};

Linting

Install a git hook into .git/hooks/commit-msg with the following contents:

#!/bin/sh

# This utility's configuration resides in .commitlintrc.js file.
./node_modules/.bin/commitlint < "$1"

If your project uses make you can use the following process to automatically install the git hooks upon each invocation of make with no target.

# Place the above mentioned commit-msg file into your project root's utils/githooks directory and
# make it executable: chmod +x utils/githooks/commit-msg

# Git hooks to be installed into the project workspace
# This will look up all the files in utils/githooks and generate a list of targets
GITFILES := $(patsubst utils/githooks/%, .git/hooks/%, $(wildcard utils/githooks/*))

# The `githooks` dependency should be added to the first (default) target so that it will be
# executed when invoking make with no arguments
all: githooks

githooks: $(GITFILES)

# Default target for all possible git hooks
.git/hooks/%: utils/githooks/%
 cp $< $@

Or if you use husky place a git hook into .huskyrc.json with the following content:

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

Keywords

FAQs

Last updated on 14 Dec 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc