commitfmt-windows 0.2.0__tar.gz → 0.3.0__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-0.2.0 → commitfmt_windows-0.3.0}/PKG-INFO +25 -1
- {commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/README.md +24 -0
- {commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/commitfmt_windows.egg-info/PKG-INFO +25 -1
- {commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/pyproject.toml +1 -1
- {commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/commitfmt_windows/__init__.py +0 -0
- {commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/commitfmt_windows.egg-info/SOURCES.txt +0 -0
- {commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/commitfmt_windows.egg-info/dependency_links.txt +0 -0
- {commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/commitfmt_windows.egg-info/top_level.txt +0 -0
- {commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: commitfmt_windows
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Utility for formatting and verifying the commit message.
|
|
5
5
|
Author-email: Mikhael Khrustik <misha@myrt.co>
|
|
6
6
|
License: MIT
|
|
@@ -208,6 +208,30 @@ extends = "node_modules/commitfmt-config-standard/commitfmt.toml"
|
|
|
208
208
|
|
|
209
209
|
Extension is only possible for the current configuration. If the current configuration extends another configuration, which in turn extends a third configuration, commitfmt will throw an error when trying to load such a configuration.
|
|
210
210
|
|
|
211
|
+
### Parser Configuration
|
|
212
|
+
|
|
213
|
+
commitfmt can be configured to use custom footer separators and comment symbols for parsing commit messages.
|
|
214
|
+
|
|
215
|
+
#### Footer separators
|
|
216
|
+
|
|
217
|
+
By default, commitfmt uses git's `trailer.separators` configuration to determine which characters separate footer keys from values. You can override this in your config file:
|
|
218
|
+
|
|
219
|
+
```toml
|
|
220
|
+
footer-separators = ":#"
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
This allows footers like `Issue-ID: 123` or `Issue-ID #123` to be recognized.
|
|
224
|
+
|
|
225
|
+
#### Comment symbol
|
|
226
|
+
|
|
227
|
+
By default, commitfmt uses git's `core.commentChar` or `core.commentString` configuration to identify comment lines in commit messages. You can override this:
|
|
228
|
+
|
|
229
|
+
```toml
|
|
230
|
+
comment-symbol = "//"
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
Lines starting with the comment symbol will be ignored during parsing.
|
|
234
|
+
|
|
211
235
|
### Additional footers
|
|
212
236
|
|
|
213
237
|
commitfmt can add additional footers to the commit message.
|
|
@@ -189,6 +189,30 @@ extends = "node_modules/commitfmt-config-standard/commitfmt.toml"
|
|
|
189
189
|
|
|
190
190
|
Extension is only possible for the current configuration. If the current configuration extends another configuration, which in turn extends a third configuration, commitfmt will throw an error when trying to load such a configuration.
|
|
191
191
|
|
|
192
|
+
### Parser Configuration
|
|
193
|
+
|
|
194
|
+
commitfmt can be configured to use custom footer separators and comment symbols for parsing commit messages.
|
|
195
|
+
|
|
196
|
+
#### Footer separators
|
|
197
|
+
|
|
198
|
+
By default, commitfmt uses git's `trailer.separators` configuration to determine which characters separate footer keys from values. You can override this in your config file:
|
|
199
|
+
|
|
200
|
+
```toml
|
|
201
|
+
footer-separators = ":#"
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
This allows footers like `Issue-ID: 123` or `Issue-ID #123` to be recognized.
|
|
205
|
+
|
|
206
|
+
#### Comment symbol
|
|
207
|
+
|
|
208
|
+
By default, commitfmt uses git's `core.commentChar` or `core.commentString` configuration to identify comment lines in commit messages. You can override this:
|
|
209
|
+
|
|
210
|
+
```toml
|
|
211
|
+
comment-symbol = "//"
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Lines starting with the comment symbol will be ignored during parsing.
|
|
215
|
+
|
|
192
216
|
### Additional footers
|
|
193
217
|
|
|
194
218
|
commitfmt can add additional footers to the commit message.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: commitfmt_windows
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Utility for formatting and verifying the commit message.
|
|
5
5
|
Author-email: Mikhael Khrustik <misha@myrt.co>
|
|
6
6
|
License: MIT
|
|
@@ -208,6 +208,30 @@ extends = "node_modules/commitfmt-config-standard/commitfmt.toml"
|
|
|
208
208
|
|
|
209
209
|
Extension is only possible for the current configuration. If the current configuration extends another configuration, which in turn extends a third configuration, commitfmt will throw an error when trying to load such a configuration.
|
|
210
210
|
|
|
211
|
+
### Parser Configuration
|
|
212
|
+
|
|
213
|
+
commitfmt can be configured to use custom footer separators and comment symbols for parsing commit messages.
|
|
214
|
+
|
|
215
|
+
#### Footer separators
|
|
216
|
+
|
|
217
|
+
By default, commitfmt uses git's `trailer.separators` configuration to determine which characters separate footer keys from values. You can override this in your config file:
|
|
218
|
+
|
|
219
|
+
```toml
|
|
220
|
+
footer-separators = ":#"
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
This allows footers like `Issue-ID: 123` or `Issue-ID #123` to be recognized.
|
|
224
|
+
|
|
225
|
+
#### Comment symbol
|
|
226
|
+
|
|
227
|
+
By default, commitfmt uses git's `core.commentChar` or `core.commentString` configuration to identify comment lines in commit messages. You can override this:
|
|
228
|
+
|
|
229
|
+
```toml
|
|
230
|
+
comment-symbol = "//"
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
Lines starting with the comment symbol will be ignored during parsing.
|
|
234
|
+
|
|
211
235
|
### Additional footers
|
|
212
236
|
|
|
213
237
|
commitfmt can add additional footers to the commit message.
|
|
File without changes
|
|
File without changes
|
{commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/commitfmt_windows.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{commitfmt_windows-0.2.0 → commitfmt_windows-0.3.0}/commitfmt_windows.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|