commitfmt-windows 1.0.2__tar.gz → 1.0.4__tar.gz
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_windows-1.0.2 → commitfmt_windows-1.0.4}/PKG-INFO +8 -2
- {commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/README.md +7 -1
- {commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/commitfmt_windows.egg-info/PKG-INFO +8 -2
- {commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/pyproject.toml +1 -1
- {commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/commitfmt_windows/__init__.py +0 -0
- {commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/commitfmt_windows.egg-info/SOURCES.txt +0 -0
- {commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/commitfmt_windows.egg-info/dependency_links.txt +0 -0
- {commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/commitfmt_windows.egg-info/top_level.txt +0 -0
- {commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: commitfmt_windows
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Utility for formatting and verifying the commit message.
|
|
5
5
|
Author-email: Mikhael Khrustik <misha@myrt.co>
|
|
6
6
|
License: MIT
|
|
@@ -324,7 +324,7 @@ To enforce conventional commits, you can use the following configuration:
|
|
|
324
324
|
|
|
325
325
|
```toml
|
|
326
326
|
[lint.header]
|
|
327
|
-
type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs"]
|
|
327
|
+
type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs", "revert"]
|
|
328
328
|
description-case = "lower-first"
|
|
329
329
|
description-max-length = 72
|
|
330
330
|
description-full-stop = true
|
|
@@ -358,3 +358,9 @@ commitfmt --from HEAD~20
|
|
|
358
358
|
# or
|
|
359
359
|
commitfmt --from 1234567890 --to 1234567890
|
|
360
360
|
```
|
|
361
|
+
|
|
362
|
+
## Ignoring commits
|
|
363
|
+
|
|
364
|
+
commitfmt ignores commit messages that start with `Merge` or `Revert` to avoid breaking standard git processes.
|
|
365
|
+
|
|
366
|
+
This happens both when formatting a single commit and when linting a history.
|
|
@@ -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.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: commitfmt_windows
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Utility for formatting and verifying the commit message.
|
|
5
5
|
Author-email: Mikhael Khrustik <misha@myrt.co>
|
|
6
6
|
License: MIT
|
|
@@ -324,7 +324,7 @@ To enforce conventional commits, you can use the following configuration:
|
|
|
324
324
|
|
|
325
325
|
```toml
|
|
326
326
|
[lint.header]
|
|
327
|
-
type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs"]
|
|
327
|
+
type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs", "revert"]
|
|
328
328
|
description-case = "lower-first"
|
|
329
329
|
description-max-length = 72
|
|
330
330
|
description-full-stop = true
|
|
@@ -358,3 +358,9 @@ commitfmt --from HEAD~20
|
|
|
358
358
|
# or
|
|
359
359
|
commitfmt --from 1234567890 --to 1234567890
|
|
360
360
|
```
|
|
361
|
+
|
|
362
|
+
## Ignoring commits
|
|
363
|
+
|
|
364
|
+
commitfmt ignores commit messages that start with `Merge` or `Revert` to avoid breaking standard git processes.
|
|
365
|
+
|
|
366
|
+
This happens both when formatting a single commit and when linting a history.
|
|
File without changes
|
|
File without changes
|
{commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/commitfmt_windows.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{commitfmt_windows-1.0.2 → commitfmt_windows-1.0.4}/commitfmt_windows.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|