corrected tflint documentation (#95)

This commit is contained in:
Martin Coxall 2020-03-02 14:48:53 +00:00 committed by GitHub
commit e402c03b6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,7 +101,15 @@ if they are present in `README.md`.
```yaml
hooks:
- id: terraform_tflint
args: ['--deep']
args: ['args=--deep']
```
In order to pass multiple args, try the following:
```yaml
- id: terraform_tflint
args:
- 'args=--deep'
- 'args=--enable-rule=terraform_documented_variables'
```
## Notes for developers