-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
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
Is there a way to use all existing rules #1056
Comments
Since these rules will be cut out into plugins in the future, enabling/disabling each plugin may solve this problem. |
This comment has been minimized.
This comment has been minimized.
This comment was marked as off-topic.
This comment was marked as off-topic.
Awesome, enabling all terraform plugin rules is now possible by upgrading to TFLint v0.40.0 and adding the following to your TFLint configuration:
Note that Thank you, @wata727! |
Hi,
I am total newbie of tflint. trying out its features. Looking into https://github.com/terraform-linters/tflint/tree/master/docs/rules, so these rules are already built-in in the tflint binary. However, 3 is enabled by default. is there a shortcut that I use says to tflint, use all those (14 i believe) during execution.
Dont want to individually add each rule in the config file and enable them!
rule "terraform_naming_convention" {
enabled = true
}
rule "terraform_documented_variables" {
enabled = true
}
.....
The text was updated successfully, but these errors were encountered: