summaryrefslogtreecommitdiffstats
path: root/schema
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-11-19 16:39:01 +0100
committerStefan Haller <stefan@haller-berlin.de>2024-03-09 10:00:44 +0100
commitcede0214009888e32027beb212b63e30e77d29e7 (patch)
tree3250b10371af9b195a36aaf1cd303feb7d3644ad /schema
parent99ad6005e82e49e84121121feb4255e09dbb8673 (diff)
Add config for soft-wrapping the commit message body
Diffstat (limited to 'schema')
-rw-r--r--schema/config.json10
1 files changed, 10 insertions, 0 deletions
diff --git a/schema/config.json b/schema/config.json
index b95381302..44d8e0cb4 100644
--- a/schema/config.json
+++ b/schema/config.json
@@ -405,6 +405,16 @@
"signOff": {
"type": "boolean",
"description": "If true, pass '--signoff' flag when committing"
+ },
+ "autoWrapCommitMessage": {
+ "type": "boolean",
+ "description": "Automatic WYSIWYG wrapping of the commit message as you type",
+ "default": true
+ },
+ "autoWrapWidth": {
+ "type": "integer",
+ "description": "If autoWrapCommitMessage is true, the width to wrap to",
+ "default": 72
}
},
"additionalProperties": false,