From f2f8ba63047afe7f6d37648c2efade81880ef546 Mon Sep 17 00:00:00 2001 From: KeisukeYamashita <19yamashita15@gmail.com> Date: Tue, 13 Feb 2024 18:02:22 +0100 Subject: [PATCH] fix(web): example of scope max length Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com> --- web/src/content/docs/rules/scope-max-length.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/content/docs/rules/scope-max-length.md b/web/src/content/docs/rules/scope-max-length.md index 6dc18be..aeba203 100644 --- a/web/src/content/docs/rules/scope-max-length.md +++ b/web/src/content/docs/rules/scope-max-length.md @@ -12,7 +12,7 @@ In this page, we will use the following commit message as an example. rules: scope-max-length: level: error - length: 6 + length: 5 ``` ## ❌ Bad @@ -29,11 +29,11 @@ feat(cli): add new flag ## Example -### Description length should be less than or equal to 72 +### Description length should be less than or equal to 5 ```yaml rules: scope-max-length: level: error - length: 72 + length: 5 ```