
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@spellbookx/commitlint-config
Advanced tools
Shared Commitlint configuration — standardizing commit message formatting across JS/TS projects.
Conventional commits, interactive prompts, and multi-scope support included.
Clean. Opinionated. Always consistent.
Base Rules
feat → A new featurefix → A bug fixdocs → Documentation only changesstyle → Code style changes without functional impactrefactor → Code refactoring (no feature or fix)perf → Performance improvementstest → Adding or correcting testsbuild → Changes affecting the build system or dependenciesci → Changes to CI configurationchore → Miscellaneous choresrevert → Reverts a previous commitkebab-casesentence-caseInteractive Prompt
,cz for interactive commits (npx cz)Parser Preset
conventional-changelog-conventionalcommitstype(scope1,scope2): subject
npm install -g commitizen cz-git
npm install -D commitizen cz-git conventional-changelog-conventionalcommits @commitlint/cli @commitlint/config-conventional @spellbookx/commitlint-config
or
pnpm add -g commitizen cz-git
pnpm add -D commitizen cz-git conventional-changelog-conventionalcommits @commitlint/cli @commitlint/config-conventional @spellbookx/commitlint-config
or
yarn global add commitizen cz-git
yarn add -D commitizen cz-git conventional-changelog-conventionalcommits @commitlint/cli @commitlint/config-conventional @spellbookx/commitlint-config
or
bun add -g commitizen cz-git
bun add -D commitizen cz-git conventional-changelog-conventionalcommits @commitlint/cli @commitlint/config-conventional @spellbookx/commitlint-config
Create a commitlint.config.mjs file at your project root:
export default {
extends: ['@spellbookx/commitlint-config'],
};
Create a .czrc file at your project root:
{
"path": "cz-git"
}
Add these properties to your root package.json:
{
"config": {
"commitizen": {
"path": "git-cz"
}
}
}
Interactive commits using Commitizen:
npx cz
Configure a lefthook.yml in your project root:
commit-msg:
commands:
lint-commit-msg:
run: npx commitlint --verbose --edit {1}
Commitlint will automatically validate commit messages on each commit. Use
czto create commits interactively.
This project is licensed under the MIT License.
Copyright (c) 2025 Davide Di Criscito
For the full details, see the LICENSE file.
FAQs
spellbookx commitlint shared config
We found that @spellbookx/commitlint-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.