@pplancq/commitlint-config 2.0.0 → 2.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 +12 -0
  2. package/index.js +5 -0
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## @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)
2
+
3
+
4
+ ### Features
5
+
6
+ * **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)
7
+
8
+
9
+ ### Reverts
10
+
11
+ * **dev-tool:** add package-lock when execute npm postversion ([1e83fe7](https://github.com/pplancq/dev-tools/commit/1e83fe7ee8d2529ce3b85e1abb56968171ee01ff))
12
+
1
13
  ## @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
14
 
3
15
 
package/index.js CHANGED
@@ -2,6 +2,11 @@
2
2
  const config = {
3
3
  extends: ['@commitlint/config-conventional'],
4
4
  ignores: [commit => /release/.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.0",
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"