From 026ea4768a2bf9bdef79b19d98aa397b5f0f23a2 Mon Sep 17 00:00:00 2001 From: Shulpov Victor <61896442+ShulV@users.noreply.github.com> Date: Thu, 23 Nov 2023 23:40:55 +0700 Subject: [PATCH] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5b73add..d26e133 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,9 @@ logger.atInfo().log("Image info created: [image_info_id = '{}']", imageInfo.getI ``` ### Hot to name JSON keys: -someName (camelCase) -Why? Many JSON libraries (in Spring Framework), such as Jackson, support this format out of the box. +"some_key_name": "value" (snake_case) +P.S. many JSON libraries (in Spring Framework), such as Jackson, support camelCase format out of the box. +But snake_case is more convenient to read now. ### Size of methods and classes: The maximum length of methods is 100 lines. The maximum class length is 1000 lines.