You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tflint ruleset containing miscellaneous rules that don't fit into other rulesets.
4
+
5
+
## Installation
6
+
7
+
You can install the plugin with `tflint --init`. Declare a config in `.tflint.hcl` as follows:
8
+
9
+
```hcl
10
+
plugin "misc" {
11
+
enabled = true
12
+
version = "0.1.0"
13
+
source = "github.com/AleksaC/tflint-ruleset-misc"
14
+
}
15
+
```
16
+
17
+
## Rules
18
+
19
+
|Name|Description|Severity|Enabled|Link|
20
+
| --- | --- | --- | --- | --- |
21
+
|no_multiline_comments|Disallows usage of multiline comments|WARNING|✔|https://github.com/AleksaC/tflint-ruleset-misc/tree/main/docs/rules/no_multiline_comments.md|
22
+
23
+
## Building the plugin
24
+
25
+
Clone the repository locally and run the following command:
26
+
27
+
```
28
+
$ make
29
+
```
30
+
31
+
You can easily install the built plugin with the following:
0 commit comments