TFLint ruleset containing miscellaneous rules that don't fit into other rulesets.
You can install the plugin with tflint --init. Declare a config in .tflint.hcl as follows:
plugin "misc" {
enabled = true
version = "0.1.0"
source = "github.com/AleksaC/tflint-ruleset-misc"
}| Name | Description | Severity | Enabled | Link |
|---|---|---|---|---|
| no_multiline_comments | Disallows usage of multiline comments | WARNING | ✔ | 🔗 |
Clone the repository locally and run the following command:
$ make
You can easily install the built plugin with the following:
$ make install
You can run the built plugin like the following:
$ cat << EOS > .tflint.hcl
plugin "misc" {
enabled = true
}
EOS
$ tflint