forked from github/pre-commit-opentofu
corrected tflint documentation (#95)
This commit is contained in:
parent
e321ff1b9c
commit
e402c03b6a
1 changed files with 9 additions and 1 deletions
10
README.md
10
README.md
|
|
@ -101,7 +101,15 @@ if they are present in `README.md`.
|
||||||
```yaml
|
```yaml
|
||||||
hooks:
|
hooks:
|
||||||
- id: terraform_tflint
|
- 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
|
## Notes for developers
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue