@appello/commitlint-config
Advanced tools
+11
-0
@@ -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" | ||
| } |
+13
-6
| # @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; | ||
| ``` |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
12228
4.07%31
29.17%0
-100%