
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
commitlint-config-ghostwriter
Advanced tools
You want to leverage commitlint to enforce a consistent commit messages that can be parsed to
generate a CHANGELOG.md
but none of the available presets support your commit types or tools,
e.g., Bitbucket, JIRA, Trello. This preset supports configuration via a .changelogrc.js
file.
This package is best used alongside the other ghostwriter
tools. Each tool can be configured
using the same .changelogrc.js
file:
npm install --save-dev commitlint-config-ghostwriter
pnpm install --save-dev commitlint-config-ghostwriter
yarn add --dev commitlint-config-ghostwriter
Create and configure a .changelogrc.js
file in the root of your repository
Update commitlint to leverage commitlint-config-ghostwriter
module.exports = {
extends: ['ghostwriter'],
};
Run commitlint
scopes
: Scope[] | undefinedThe array of scopes that are available for selection when commiting. If left undefined
, then any
scope may be entered when committing.
type Scope = { description: string; type: string };
types
: Array<HiddenType | VisibleType>The array of type objects representing the explicitly supported commit message types, and whether they should show up in generated CHANGELOGs.
type CommitType = { description: string; type: string };
type HiddenType = CommitType & { hidden: true; section: undefined };
type VisibleType = CommitType & { hidden: undefined; section: string };
FAQs
A configurable commitlint preset
The npm package commitlint-config-ghostwriter receives a total of 879 weekly downloads. As such, commitlint-config-ghostwriter popularity was classified as not popular.
We found that commitlint-config-ghostwriter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.