Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@appello/commitlint-config

Package Overview
Dependencies
Maintainers
3
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appello/commitlint-config - npm Package Compare versions

Comparing version
5.0.0
to
6.0.0
+11
-0
CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [6.0.0](https://bitbucket.org/appello/frontend-tools/compare/@appello/commitlint-config@5.0.0...@appello/commitlint-config@6.0.0) (2026-04-30)
### Features
* ✨ Implement builds ts for prettier config ([2996513](https://bitbucket.org/appello/frontend-tools/commits/299651379840dbb06d6d6e1c12e378307e285858))
# [5.0.0](https://bitbucket.org/appello/frontend-tools/compare/@appello/commitlint-config@4.0.1...@appello/commitlint-config@5.0.0) (2026-04-29)

@@ -8,0 +19,0 @@

+2
-2
{
"name": "@appello/commitlint-config",
"version": "5.0.0",
"version": "6.0.0",
"author": "Appello Software",

@@ -43,3 +43,3 @@ "description": "Appello's commitlint config",

},
"gitHead": "bd6ad3f84c148dcff6c76f390bad29d1de13dbae"
"gitHead": "59868f26bb2eca43ae974d0a17697038182881c6"
}
# @appello/commitlint-config
This package provides Appello's commitlint.config.js as an extensible shared config.
This package provides Appello's `commitlint.config.ts` as an extensible shared config.

@@ -8,3 +8,3 @@ ## Installation

```sh
npm i -D @commitlint/cli @commitlint/config-conventional @commitlint/cz-commitlint commitizen
npm i -D @commitlint/cli @commitlint/config-conventional @commitlint/cz-commitlint commitizen @commitlint/types
```

@@ -20,6 +20,13 @@

For example `commitlint.config.ts`
```js
module.exports = {
extends: ['@appello/commitlint-config'],
};
```ts
import { UserConfig } from "@commitlint/types";
import appelloConfig from '@appello/commitlint-config';
export default {
...appelloConfig,
rules: {
...appelloConfig.rules,
},
} as UserConfig;
```