From 5ccaddbcc2455c7b5c753014b16dcb9f8ec78bdb Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Mon, 13 May 2019 19:31:23 -0700 Subject: [PATCH] Promote `json1` as the primary JSON format --- shellcheck.1.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/shellcheck.1.md b/shellcheck.1.md index e99e8ea..c0e3817 100644 --- a/shellcheck.1.md +++ b/shellcheck.1.md @@ -149,11 +149,11 @@ not warn at all, as `ksh` supports decimals in arithmetic contexts. ... -**json** +**json1** : Json is a popular serialization format that is more suitable for web applications. ShellCheck's json is compact and contains only the bare - minimum. Tabs are 8 characters. + minimum. Tabs are counted as 1 character. [ { @@ -167,12 +167,12 @@ not warn at all, as `ksh` supports decimals in arithmetic contexts. ... ] -**json1** +**json** -: This is the same as shellcheck's json format, but tabs are treated as - single characters instead of 8-character tabstops. +: This is a legacy version of the **json1** format, with a tab stop + of 8 instead of 1. -*quiet* +**quiet** : Suppress all normal output. Exit with zero if no issues are found, otherwise exit with one. Stops processing after the first issue.