From 8601bdcd7d8034c18c64e7d543d2e4492fff0593 Mon Sep 17 00:00:00 2001 From: Nikita Pavlov Date: Sun, 24 Sep 2023 09:55:24 +0000 Subject: [PATCH] docs: fix missed comma-break in programmaticaly usage --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f2acbe5..e81f5a4 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ format(`SELECT foo FROM bar`); |Configuration|Format|Default|Description|`pgFormatter` equivalent| |---|---|---|---|---| |`anonymize`|boolean|`false`|Obscure all literals in queries, useful to hide confidential data before formatting.|`anonymize`| +|`commaBreak`|boolean|`false`|Add a newline after each comma in an insert statement.|`comma-break`| |`functionCase`|string ("unchanged", "lowercase", "uppercase", "capitalize")|`unchanged`|Change the case of the function names.|`function-case`| |`keywordCase`|string ("unchanged", "lowercase", "uppercase", "capitalize")|`unchanged`|Change the case of the reserved keyword.|`keyword-case`| |`noRcFile`|boolean|`false`|Do not read ~/.pg_format automatically.|`no-rcfile`|