commitfmt-linux-arm64 1.0.2 → 1.0.4

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/README.md +7 -1
  2. package/commitfmt +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -305,7 +305,7 @@ To enforce conventional commits, you can use the following configuration:
305
305
 
306
306
  ```toml
307
307
  [lint.header]
308
- type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs"]
308
+ type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs", "revert"]
309
309
  description-case = "lower-first"
310
310
  description-max-length = 72
311
311
  description-full-stop = true
@@ -339,3 +339,9 @@ commitfmt --from HEAD~20
339
339
  # or
340
340
  commitfmt --from 1234567890 --to 1234567890
341
341
  ```
342
+
343
+ ## Ignoring commits
344
+
345
+ commitfmt ignores commit messages that start with `Merge` or `Revert` to avoid breaking standard git processes.
346
+
347
+ This happens both when formatting a single commit and when linting a history.
package/commitfmt CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commitfmt-linux-arm64",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Utility for formatting and verifying the commit message.",
5
5
  "preferUnplugged": false,
6
6
  "repository": {