@pplancq/commitlint-config 2.0.0 → 2.1.1

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 +19 -0
  2. package/index.js +6 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## @pplancq/commitlint-config [2.1.1](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.1.0...@pplancq/commitlint-config@2.1.1) (2024-03-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **commitlint-config:** fix case-sensitive to ignores release commit ([ab9c5fd](https://github.com/pplancq/dev-tools/commit/ab9c5fd433a75264e943530cf2006bbad70b306a))
7
+
8
+ ## @pplancq/commitlint-config [2.1.0](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.0.0...@pplancq/commitlint-config@2.1.0) (2024-03-20)
9
+
10
+
11
+ ### Features
12
+
13
+ * **commitlint-config:** update max length for header body and footer ([861521d](https://github.com/pplancq/dev-tools/commit/861521da4efff31124675c46d82332e1d0bc09bf)), closes [#149](https://github.com/pplancq/dev-tools/issues/149)
14
+
15
+
16
+ ### Reverts
17
+
18
+ * **dev-tool:** add package-lock when execute npm postversion ([1e83fe7](https://github.com/pplancq/dev-tools/commit/1e83fe7ee8d2529ce3b85e1abb56968171ee01ff))
19
+
1
20
  ## @pplancq/commitlint-config [2.0.0](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@1.0.0...@pplancq/commitlint-config@2.0.0) (2024-03-12)
2
21
 
3
22
 
package/index.js CHANGED
@@ -1,7 +1,12 @@
1
1
  /** @type {import('@commitlint/types').UserConfig} */
2
2
  const config = {
3
3
  extends: ['@commitlint/config-conventional'],
4
- ignores: [commit => /release/.test(commit)],
4
+ ignores: [commit => /release/i.test(commit)],
5
+ rules: {
6
+ 'header-max-length': [2, 'always', 200],
7
+ 'body-max-line-length': [0],
8
+ 'footer-max-line-length': [0],
9
+ },
5
10
  };
6
11
 
7
12
  module.exports = config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pplancq/commitlint-config",
3
- "version": "2.0.0",
3
+ "version": "2.1.1",
4
4
  "license": "MIT",
5
5
  "description": "pplancq commitlint config",
6
6
  "author": "pplancq <paul.plancq@outlook.fr>",
@@ -21,7 +21,7 @@
21
21
  "config"
22
22
  ],
23
23
  "dependencies": {
24
- "@commitlint/config-conventional": "^19.0.3"
24
+ "@commitlint/config-conventional": "^19.1.0"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "@commitlint/cli": "^19.0.3"