We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb59d1a commit 5c0bdabCopy full SHA for 5c0bdab
main.go
@@ -10,7 +10,7 @@ func main() {
10
plugin.Serve(&plugin.ServeOpts{
11
RuleSet: &tflint.BuiltinRuleSet{
12
Name: "trailing-comma",
13
- Version: "0.1.2",
+ Version: "0.2.0",
14
Rules: []tflint.Rule{
15
rules.NewTerraformListsTrailingCommaRule(),
16
},
rules/terraform_lists_trailing_comma.go
@@ -28,7 +28,7 @@ func (r *TerraformListsTrailingCommaRule) Enabled() bool {
28
29
// Severity returns the rule severity
30
func (r *TerraformListsTrailingCommaRule) Severity() tflint.Severity {
31
- return tflint.ERROR
+ return tflint.WARNING
32
}
33
34
// Link returns the rule reference link
0 commit comments