We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are 2 examples of using args in Notes about terraform_tflint hooks chapter:
args
Notes about terraform_tflint hooks
hooks: - id: terraform_tflint args: ['args=--deep']
This not works with tflint inside pre-commit hook. Clean tflint with the parameters work for me.
As far as I can see from the hook's bash script this should be with two minuses before internal args parameter, e.g.
hooks: - id: terraform_tflint args: ['--args=--deep']
This one works for me. So it looks like it not and issue in the code but the wrong documented parameter.
The text was updated successfully, but these errors were encountered:
This has been fixed in #125
v1.33.0 has been just released.
Sorry, something went wrong.
No branches or pull requests
There are 2 examples of using
args
inNotes about terraform_tflint hooks
chapter:This not works with tflint inside pre-commit hook. Clean tflint with the parameters work for me.
As far as I can see from the hook's bash script this should be with two minuses before internal
args
parameter, e.g.This one works for me.
So it looks like it not and issue in the code but the wrong documented parameter.
The text was updated successfully, but these errors were encountered: