commitfmt-linux 1.0.3__py3-none-any.whl → 1.0.9__py3-none-any.whl
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.
- {commitfmt_linux-1.0.3.dist-info → commitfmt_linux-1.0.9.dist-info}/METADATA +9 -2
- commitfmt_linux-1.0.9.dist-info/RECORD +5 -0
- {commitfmt_linux-1.0.3.dist-info → commitfmt_linux-1.0.9.dist-info}/WHEEL +1 -1
- commitfmt_linux-1.0.3.dist-info/RECORD +0 -5
- {commitfmt_linux-1.0.3.dist-info → commitfmt_linux-1.0.9.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: commitfmt_linux
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Summary: Utility for formatting and verifying the commit message.
|
|
5
5
|
Author-email: Mikhael Khrustik <misha@myrt.co>
|
|
6
6
|
License: MIT
|
|
@@ -13,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
17
|
Classifier: Operating System :: POSIX :: Linux
|
|
17
18
|
Requires-Python: >=3.9
|
|
18
19
|
Description-Content-Type: text/markdown
|
|
@@ -324,7 +325,7 @@ To enforce conventional commits, you can use the following configuration:
|
|
|
324
325
|
|
|
325
326
|
```toml
|
|
326
327
|
[lint.header]
|
|
327
|
-
type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs"]
|
|
328
|
+
type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs", "revert"]
|
|
328
329
|
description-case = "lower-first"
|
|
329
330
|
description-max-length = 72
|
|
330
331
|
description-full-stop = true
|
|
@@ -358,3 +359,9 @@ commitfmt --from HEAD~20
|
|
|
358
359
|
# or
|
|
359
360
|
commitfmt --from 1234567890 --to 1234567890
|
|
360
361
|
```
|
|
362
|
+
|
|
363
|
+
## Ignoring commits
|
|
364
|
+
|
|
365
|
+
commitfmt ignores commit messages that start with `Merge` or `Revert` to avoid breaking standard git processes.
|
|
366
|
+
|
|
367
|
+
This happens both when formatting a single commit and when linting a history.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
commitfmt_linux/__init__.py,sha256=N5cpNKEYYrVRlEGVenMAfJyE80zm2znA33zwxjuo0e0,25
|
|
2
|
+
commitfmt_linux-1.0.9.dist-info/METADATA,sha256=eU8STcvX-cBIU824ZYG67ogRJd4ydQL3JtaF476txX8,10221
|
|
3
|
+
commitfmt_linux-1.0.9.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
4
|
+
commitfmt_linux-1.0.9.dist-info/top_level.txt,sha256=KwB-TV2AfS1HLrHQ_it0d9NqEFJv8rKLW0B-x_vRFio,16
|
|
5
|
+
commitfmt_linux-1.0.9.dist-info/RECORD,,
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
commitfmt_linux/__init__.py,sha256=N5cpNKEYYrVRlEGVenMAfJyE80zm2znA33zwxjuo0e0,25
|
|
2
|
-
commitfmt_linux-1.0.3.dist-info/METADATA,sha256=X8kRiWHU_QJbAVJgWsunvx0tffD51lFdEDUGE3UUuK8,9947
|
|
3
|
-
commitfmt_linux-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
-
commitfmt_linux-1.0.3.dist-info/top_level.txt,sha256=KwB-TV2AfS1HLrHQ_it0d9NqEFJv8rKLW0B-x_vRFio,16
|
|
5
|
-
commitfmt_linux-1.0.3.dist-info/RECORD,,
|
|
File without changes
|