@anolilab/commitlint-config 7.0.0 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +58 -47
  3. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## @anolilab/commitlint-config [8.1.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/commitlint-config@8.0.0...@anolilab/commitlint-config@8.1.0) (2026-01-05)
2
+
3
+ ### Bug Fixes
4
+
5
+ * update package versions and configurations ([6a83bb6](https://github.com/anolilab/javascript-style-guide/commit/6a83bb692298f0f037c4af6e5830865cb0a6d847))
6
+
7
+ ## @anolilab/commitlint-config [8.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/commitlint-config@7.0.0...@anolilab/commitlint-config@8.0.0) (2025-12-22)
8
+
9
+ ### Bug Fixes
10
+
11
+ * update package versions and configurations ([ad6cb2c](https://github.com/anolilab/javascript-style-guide/commit/ad6cb2c90ed4049ea8f136c583c0db1e477b20e7))
12
+
13
+ ### Styles
14
+
15
+ * update package configurations and dependencies ([98475c5](https://github.com/anolilab/javascript-style-guide/commit/98475c5e5e7bc5d832ef10d3d723f75340223347))
16
+
17
+ ### Miscellaneous Chores
18
+
19
+ * update configuration and scripts ([5d6a44f](https://github.com/anolilab/javascript-style-guide/commit/5d6a44f99568b5f67939dfc52047fa742fd2bf58))
20
+
1
21
  ## @anolilab/commitlint-config [7.0.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/commitlint-config@6.0.7...@anolilab/commitlint-config@7.0.0) (2025-12-10)
2
22
 
3
23
  ### Miscellaneous Chores
package/README.md CHANGED
@@ -1,9 +1,24 @@
1
- <div align="center">
2
- <h1>Shareable Commitlint Configuration</h1>
1
+ <!-- START_PACKAGE_OG_IMAGE_PLACEHOLDER -->
2
+
3
+ <a href="https://github.com/anolilab/semantic-release" align="center">
4
+
5
+ <img src="__assets__/package-og.svg" alt="commitlint-config" />
6
+
7
+ </a>
8
+
9
+ <h3 align="center">Anolilab´s shareable coding standard config for commitlint.</h3>
10
+
11
+ <!-- END_PACKAGE_OG_IMAGE_PLACEHOLDER -->
3
12
 
4
- A shareable commitlint configuration for enforcing consistent commit messages in your projects.
13
+ <br />
5
14
 
6
- [![npm-image]][npm-url] [![license-image]][license-url]
15
+ <div align="center">
16
+
17
+ [![typescript-image][typescript-badge]][typescript-url]
18
+ [![mit licence][license-badge]][license]
19
+ [![npm downloads][npm-downloads-badge]][npm-downloads]
20
+ [![Chat][chat-badge]][chat]
21
+ [![PRs Welcome][prs-welcome-badge]][prs-welcome]
7
22
 
8
23
  </div>
9
24
 
@@ -19,52 +34,43 @@ A shareable commitlint configuration for enforcing consistent commit messages in
19
34
 
20
35
  ---
21
36
 
22
- ## Purpose
23
-
24
- - Ensure a cohesive structure for all commits in your project with a comprehensive set of rules.
25
- - Consistency in commit messages plays a pivotal role in fostering effective project collaboration, enhancing maintainability, and preserving project history.
26
- - By leveraging commitlint configuration, you can effortlessly enforce a standardized structure for all commits in your project.
27
- - This valuable tool facilitates better comprehension of the changes made and the reasoning behind them, enabling seamless understanding for your entire team.
28
- - This configuration also includes a semantic-release configuration, which enables automated GitHub/NPM releases based on your commit messages.
29
-
30
37
  ## Install
31
38
 
32
- ```bash
33
- npm install --dev-save @commitlint/cli @anolilab/commitlint-config
39
+ ```sh
40
+ npm install @anolilab/commitlint-config
34
41
  ```
35
42
 
36
43
  ```sh
37
- yarn add -D @commitlint/cli @anolilab/commitlint-config
44
+ yarn add @anolilab/commitlint-config
38
45
  ```
39
46
 
40
47
  ```sh
41
- pnpm add -D @commitlint/cli @anolilab/commitlint-config
48
+ pnpm add @anolilab/commitlint-config
42
49
  ```
43
50
 
44
51
  ## Usage
45
52
 
46
- If you dont have a `commitlint.config.js` or the other supported names, we can create the file for you after installing `@anolilab/commitlint-config`, call `pnpm commitlint-config:install`.
53
+ If you don't have a `commitlint.config.js` or the other supported names, we can create the file for you after installing `@anolilab/commitlint-config`, call `pnpm commitlint-config:install`.
47
54
 
48
55
  > Alternatively the configuration can be defined in a `commitlint.config.js`, `.commitlintrc.js`, `.commitlintrc`, `.commitlintrc.json`, `.commitlintrc.yml` file
49
56
 
50
57
  If you already have a `commitlint.config.js`, then you can extend the `commitlint.config.js`, with `@anolilab/commitlint-config`.
51
58
 
52
- > Note: If the script detects an existing `commitlint.config.js` file, it will not overwrite it.
53
-
54
59
  ```js
55
60
  module.exports = {
56
- extends: ['@anolilab/commitlint-config'],
61
+ extends: ["@anolilab/commitlint-config"],
57
62
  rules: {
58
63
  // overwrite rules here
59
64
  // or extend rules
60
65
  },
61
66
  };
62
67
  ```
68
+
63
69
  or
64
70
 
65
71
  ```js
66
72
  export default {
67
- extends: ['@anolilab/commitlint-config'],
73
+ extends: ["@anolilab/commitlint-config"],
68
74
  rules: {
69
75
  // overwrite rules here
70
76
  // or extend rules
@@ -245,46 +251,51 @@ fi
245
251
  > This command allows the user to use their terminal to interact with Commitizen during the hook.
246
252
  >
247
253
  > Why `exec < /dev/tty?` By default, git hooks are not interactive.
248
-
254
+ >
249
255
  > Note: If you are using `zsh` you may need to use `exec < /dev/tty?` instead of `exec < /dev/tty`.
250
-
256
+ >
251
257
  > Note: For pnpm users, replace `npx` with `pnpx` in the above command.
252
258
 
253
259
  Congratulations! Your repo is Commitizen friendly. Time to flaunt it!
254
260
 
261
+ ## Related
262
+
255
263
  ## Supported Node.js Versions
256
264
 
257
- Libraries in this ecosystem make the best effort to track
258
- [Node.js’ release schedule](https://nodejs.org/en/about/releases/). Here’s [a
259
- post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
265
+ Libraries in this ecosystem make the best effort to track [Node.js' release schedule](https://github.com/nodejs/release#release-schedule).
266
+
267
+ Here's [a post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
260
268
 
261
- Contributing
262
- ------------
269
+ ## Contributing
263
270
 
264
- If you would like to help take a look at the [list of issues](https://github.com/anolilab/javascript-style-guide/issues) and check our [Contributing](.github/CONTRIBUTING.md) guild.
271
+ If you would like to help take a look at the [list of issues](https://github.com/anolilab/javascript-style-guide/issues) and check our [Contributing](.github/CONTRIBUTING.md) guidelines.
265
272
 
266
273
  > **Note:** please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
267
274
 
268
- Credits
269
- -------------
275
+ ## Credits
276
+
277
+ - [Daniel Bannert](https://github.com/prisis)
278
+
279
+ - [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
280
+
281
+ ## Made with ❤️ at Anolilab
270
282
 
271
- - [Daniel Bannert](https://github.com/prisis)
272
- - [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
283
+ This is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Anolilab](https://www.anolilab.com/open-source) is a Development and AI Studio. Contact us at [hello@anolilab.com](mailto:hello@anolilab.com) if you need any help with these technologies or just want to say hi!
273
284
 
274
- License
275
- -------------
285
+ ## License
276
286
 
277
- The anolilab javascript-style-guide is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT)
287
+ The anolilab commitlint-config is open-sourced software licensed under the [MIT][license-url]
278
288
 
279
- [1]: https://github.com/semantic-release/commit-analyzer
280
- [2]: https://github.com/semantic-release/release-notes-generator
281
- [3]: https://github.com/semantic-release/changelog
282
- [4]: https://github.com/semantic-release/github
283
- [5]: https://github.com/semantic-release/exec
284
- [6]: https://github.com/semantic-release/git
285
- [7]: https://github.com/semantic-release/npm
289
+ <!-- badges -->
286
290
 
287
- [license-image]: https://img.shields.io/npm/l/@anolilab/semantic-release-preset?color=blueviolet&style=for-the-badge
288
- [license-url]: LICENSE.md "license"
289
- [npm-image]: https://img.shields.io/npm/v/@anolilab/semantic-release-preset/latest.svg?style=for-the-badge&logo=npm
290
- [npm-url]: https://www.npmjs.com/package/@anolilab/semantic-release-preset/v/latest "npm"
291
+ [license-badge]: https://img.shields.io/npm/l/@anolilab/commitlint-config?style=for-the-badge
292
+ [license]: https://github.com/anolilab/javascript-style-guide/blob/main/LICENSE
293
+ [npm-downloads-badge]: https://img.shields.io/npm/dm/@anolilab/commitlint-config?style=for-the-badge
294
+ [npm-downloads]: https://www.npmjs.com/package/@anolilab/commitlint-config
295
+ [prs-welcome-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge
296
+ [prs-welcome]: https://github.com/anolilab/javascript-style-guide/blob/main/.github/CONTRIBUTING.md
297
+ [chat-badge]: https://img.shields.io/discord/902465130518949899.svg?style=for-the-badge
298
+ [chat]: https://discord.gg/4VuvwWGaaB
299
+ [typescript-badge]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
300
+ [typescript-url]: https://www.typescriptlang.org/
301
+ [license-url]: https://opensource.org/licenses/MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/commitlint-config",
3
- "version": "7.0.0",
3
+ "version": "8.1.0",
4
4
  "description": "Anolilab´s shareable coding standard config for commitlint.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -63,8 +63,8 @@
63
63
  "LICENSE.md"
64
64
  ],
65
65
  "dependencies": {
66
- "@commitlint/config-conventional": "^20.2.0",
67
- "@commitlint/core": "^20.2.0",
66
+ "@commitlint/config-conventional": "20.3.0",
67
+ "@commitlint/core": "20.3.0",
68
68
  "commitizen": "^4.3.1",
69
69
  "conventional-changelog-conventionalcommits": "9.1.0",
70
70
  "cz-conventional-changelog": "^3.3.0"
@@ -78,5 +78,6 @@
78
78
  "publishConfig": {
79
79
  "access": "public",
80
80
  "provenance": true
81
- }
81
+ },
82
+ "optionalDependencies": {}
82
83
  }