From e402c03b6a7275cf3320d732ae792a0c4b61cda9 Mon Sep 17 00:00:00 2001 From: Martin Coxall Date: Mon, 2 Mar 2020 14:48:53 +0000 Subject: [PATCH] corrected tflint documentation (#95) --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 39f855cbd..386451ab8 100644 --- a/README.md +++ b/README.md @@ -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