adding json

This commit is contained in:
Lucas Gravley 2020-04-23 09:19:21 -05:00
parent 90faa90bf5
commit e0bfa7f392

View file

@ -55,7 +55,6 @@ AllCops:
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
## Shell ## Shell
**Shellcheck** is an opensource tool we use for linting and validation of the shell scripting language.
- [Shellcheck](https://github.com/koalaman/shellcheck) - [Shellcheck](https://github.com/koalaman/shellcheck)
### Shellcheck Config file ### Shellcheck Config file
@ -146,10 +145,19 @@ rules:
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
## JSON ## JSON
- [jsonlint](https://github.com/zaach/jsonlint)
### JsonLint Config file ### JsonLint Config file
- There is no top level *configuration file* available at this time
### JsonLint disable single line ### JsonLint disable single line
- There is currently **No** way to disable rules inline of the file(s)
### JsonLint disable code block ### JsonLint disable code block
- There is currently **No** way to disable rules inline of the file(s)
### JsonLint disable entire file ### JsonLint disable entire file
- There is currently **No** way to disable rules inline of the file(s)
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------