diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-04-19 13:27:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-04-19 13:28:19 +0000 |
commit | a4dc387bfbc56ba97701bfdde34b033ada9bb5c1 (patch) | |
tree | 3e2e000f25057e78e8789657216afe02f28d9946 /docs/rules.md | |
parent | Releasing debian version 0.15.0-1. (diff) | |
download | gitlint-a4dc387bfbc56ba97701bfdde34b033ada9bb5c1.tar.xz gitlint-a4dc387bfbc56ba97701bfdde34b033ada9bb5c1.zip |
Merging upstream version 0.15.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docs/rules.md')
-rw-r--r-- | docs/rules.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/rules.md b/docs/rules.md index 23b8e91..9779c54 100644 --- a/docs/rules.md +++ b/docs/rules.md @@ -17,7 +17,7 @@ T4 | title-hard-tab | >= 0.1.0 | Title cannot contain h T5 | title-must-not-contain-word | >= 0.1.0 | Title cannot contain certain words (default: "WIP") T6 | title-leading-whitespace | >= 0.4.0 | Title cannot have leading whitespace (space or tab) T7 | title-match-regex | >= 0.5.0 | Title must match a given regex (default: None) -T8 | title-max-length | >= 0.14.0 | Title length must be > 5 chars. +T8 | title-min-length | >= 0.14.0 | Title length must be > 5 chars. B1 | body-max-line-length | >= 0.1.0 | Lines in the body must be < 80 chars B2 | body-trailing-whitespace | >= 0.1.0 | Body cannot have trailing whitespace (space or tab) B3 | body-hard-tab | >= 0.1.0 | Body cannot contain hard tab characters (\t) @@ -397,9 +397,9 @@ regex | >= 0.14.0 | None | [Pyt [ignore-body-lines] regex=^Co-Authored-By -# Ignore lines that start with 'Co-Authored-By' or with 'Signed-Off-By' +# Ignore lines that start with 'Co-Authored-By' or with 'Signed-off-by' [ignore-body-lines] -regex=(^Co-Authored-By)|(^Signed-Off-By) +regex=(^Co-Authored-By)|(^Signed-off-by) # Ignore lines that contain 'foobar' [ignore-body-lines] |