From e0bfa7f392169461ce7044db8f70e2b94003c8f0 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 23 Apr 2020 09:19:21 -0500 Subject: [PATCH] adding json --- docs/disabling-linters.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/disabling-linters.md b/docs/disabling-linters.md index a0f2abab..64710bff 100644 --- a/docs/disabling-linters.md +++ b/docs/disabling-linters.md @@ -55,7 +55,6 @@ AllCops: -------------------------------------------------------------------------------- ## Shell -**Shellcheck** is an opensource tool we use for linting and validation of the shell scripting language. - [Shellcheck](https://github.com/koalaman/shellcheck) ### Shellcheck Config file @@ -146,10 +145,19 @@ rules: -------------------------------------------------------------------------------- ## JSON +- [jsonlint](https://github.com/zaach/jsonlint) + ### JsonLint Config file +- There is no top level *configuration file* available at this time + ### JsonLint disable single line +- There is currently **No** way to disable rules inline of the file(s) + ### JsonLint disable code block +- There is currently **No** way to disable rules inline of the file(s) + ### JsonLint disable entire file +- There is currently **No** way to disable rules inline of the file(s) --------------------------------------------------------------------------------