npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@icebreakers/commitlint-config

v4.1.0

Published

Commitlint preset from the repoctl development toolchain

Readme

@icebreakers/commitlint-config

Overview

@icebreakers/commitlint-config wraps @commitlint/config-conventional, exposes a typed factory API, and keeps commit prompts in sync with any custom types you add. Use it to enforce Conventional Commits across monorepos while tailoring type, scope, and subject rules per team.

Installation

pnpm add -D @commitlint/cli @icebreakers/commitlint-config

Quick Start

Create commitlint.config.ts in the repository root:

import { icebreaker } from '@icebreakers/commitlint-config'

export default icebreaker()

Add a script or Husky hook to run commitlint:

pnpm commitlint --from=HEAD~1

When you need explicit naming, use createIcebreakerCommitlintConfig(options)—it returns the same value as icebreaker.

Customising Rules

The factory accepts targeted option groups so you can extend the default convention without re-implementing every rule:

import {
  icebreaker,
  RuleConfigSeverity,
} from '@icebreakers/commitlint-config'

export default icebreaker({
  types: {
    definitions: [
      { value: 'docs', title: 'Docs', description: '文档更新', emoji: '📝' },
      { value: 'deps', title: 'Dependencies', description: 'Bump deps' },
    ],
    add: ['perf'],
  },
  scopes: {
    values: ['core', 'lint', 'website'],
    required: true,
    case: ['kebab-case', 'lower-case'],
  },
  subject: {
    forbidden: ['sentence-case', 'start-case'],
    caseSeverity: RuleConfigSeverity.Warning,
    fullStop: false,
  },
  header: {
    maxLength: 100,
  },
  extends: ['@acme/commitlint-config'],
})
  • types – add new entries, merge prompt metadata, or tighten the type-enum rule.
  • scopes – whitelist scope values, enforce casing, or require scopes.
  • subject – forbid casing styles, configure punctuation, and allow empty subjects for merge commits when needed.
  • header – override maximum length or severity.
  • extends / rules – append extra commitlint configs or raw rule overrides.
  • prompt – merge additional prompt groups for interactive commit tools.

All rule severities use RuleConfigSeverity from @commitlint/types.

Prompt Synchronisation

The factory keeps commit prompts in sync with any custom type definitions. If you pass a prompt block, it deep merges with the conventional preset, so your CLI prompt automatically reflects newly added types or scopes.

Suggested Workflow

  1. Install Husky and configure a commit-msg hook:
    pnpm husky add .husky/commit-msg "pnpm commitlint --edit \"$1\""
  2. Use pnpm commit (Changeset prompt) or your own CLI for guided commits.
  3. Add pnpm lint and pnpm test to CI so commits fail fast when rules change.

Troubleshooting

  • If commitlint cannot find the config file, ensure it is named commitlint.config.ts (or .cjs) at the repository root.
  • For workspaces that ship custom prompts, pass a prompt object instead of re-building the schema by hand.
  • To disable commits in scripts (e.g. release bots), set COMMITLINT_DISABLED=true and skip the hook execution.

Project links

  • Documentation: https://repoctl.icebreaker.top
  • Repository: https://github.com/sonofmagic/repoctl/tree/main/packages/commitlint
  • Issues: https://github.com/sonofmagic/repoctl/issues