@ornikar/commitlint-config 6.0.0 → 6.0.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.0.1](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@6.0.0...@ornikar/commitlint-config@6.0.1) (2023-11-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **commitlint-config:** remove max length not in specification [no issue] ([#1039](https://github.com/ornikar/shared-configs/issues/1039)) ([a9e5a8e](https://github.com/ornikar/shared-configs/commit/a9e5a8e53a930ae12dce89138afd2833a121da34))
12
+
13
+
14
+
6
15
  ## [6.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@5.0.2...@ornikar/commitlint-config@6.0.0) (2023-09-27)
7
16
 
8
17
 
package/index.js CHANGED
@@ -6,5 +6,9 @@ module.exports = {
6
6
  // disable scope case
7
7
  // We use camelCase in directory names, and scope should match these directories in some cases.
8
8
  'scope-case': [0],
9
+
10
+ // not in the spec, see https://www.conventionalcommits.org/en/v1.0.0/#specification
11
+ 'header-max-length': [0],
12
+ 'footer-max-line-length': [0],
9
13
  },
10
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/commitlint-config",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "📓 commitlint config",
5
5
  "repository": {
6
6
  "directory": "@ornikar/commitlint-config",
@@ -21,6 +21,5 @@
21
21
  },
22
22
  "scripts": {
23
23
  "lint:eslint": "yarn ../.. eslint --report-unused-disable-directives --quiet @ornikar/commitlint-config"
24
- },
25
- "gitHead": "73a88449f791b3153ac71460f397eecb47a3ac18"
26
- }
24
+ }
25
+ }