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

@astral/commitlint-config

Package Overview
Dependencies
Maintainers
0
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@astral/commitlint-config

# Usage

  • 2.5.0-rc.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
43
decreased by-56.57%
Maintainers
0
Weekly downloads
 
Created
Source

@astral/commitlint-config

Usage

Installation

Npm

npm i commitlint @astral/commitlint-config --save-dev 

Yarn

yarn add commitlint @astral/commitlint-config -D

Configuration

commitlint.config.js

const { createConfig } = require('@astral/commitlint-config');

module.exports = createConfig({
  scopes: ['ui', 'server'],
  ticketPrefix: 'UIKIT',
});

.huskyrc

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

Message example

Valid

feat(UIKIT-222,ui): Title feat: Title feat(UIKIT-222): Title

Invalid

feat(UIKIT222): Title feat(unknown): Title

Format

${ENUM}(SCOPE|TASK): Description

Default ENUM:

  • feat - добавлена новая фича. Можно связать с релизом minor версии
  • bug - исправлена ошибка. Можно связать с релизом patch версии
  • wip (work in progress) - промежуточные изменения
  • refactor - произведен рефакторинг. Можно связать с релизом patch версии
  • doc - внесены изменения в .md файлы или storybook.
  • build - внесены изменения в сборке пакетов. Можно связать с релизом patch версии
  • chore - внесены изменения в настройку окружения проекта (линтеры, ci...).
  • revert - удалены ранее внесенные изменения
  • style - написаны или изменены стили проекта
  • test - написаны или изменены тесты проекта
  • major - breaking changes. Полезен для пакетов. Можно связать с релизом major версии

API

createConfig

const { createConfig } = require('@astral/commitlint-config');

type Params = {
  /**
   * Список доступных scopes.
   * @example
   * // createConfig({ scopes: ['server', 'ui'], ticketPrefix: 'UIKIT' })
   */
  scopes?: string[];
  /**
   * Название префикса задач, данный префикс будет доступен в scope.
   * @example
   * // createConfig({ ticketPrefix: 'UIKIT' })
   */
  ticketPrefix: string;
  /**
   * Список доступных type. Дефолтное значение указано в разделе Format
   * @example
   * // createConfig({ typeEnum: ['feat', 'ci'], ticketPrefix: 'UIKIT',  })
   */
  typeEnum?: string[];
};
  
createConfig(params: Params);

FAQs

Package last updated on 05 Nov 2024

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