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
message: Use correct caps in func name (i.e., HTTPS or https, not Https) (see list at https://github.com/hashicorp/terraform-provider-aws/blob/main/names/caps.md)
64
64
paths:
65
65
include:
66
-
- internal
66
+
- "/internal"
67
67
patterns:
68
68
- pattern: func $NAME( ... ) { ... }
69
69
- metavariable-pattern:
@@ -78,7 +78,7 @@ rules:
78
78
message: Use correct caps in const name (i.e., HTTPS or https, not Https) (see list at https://github.com/hashicorp/terraform-provider-aws/blob/main/names/caps.md)
79
79
paths:
80
80
include:
81
-
- internal
81
+
- "/internal"
82
82
patterns:
83
83
- pattern: const $NAME = ...
84
84
- metavariable-pattern:
@@ -92,7 +92,7 @@ rules:
92
92
message: Use correct caps in var name (i.e., HTTPS or https, not Https) (see list at https://github.com/hashicorp/terraform-provider-aws/blob/main/names/caps.md)
93
93
paths:
94
94
include:
95
-
- internal
95
+
- "/internal"
96
96
patterns:
97
97
- pattern: var $NAME = ...
98
98
- metavariable-pattern:
@@ -107,7 +107,7 @@ rules:
107
107
message: Do not use "EC2" in func name inside ec2 package
108
108
paths:
109
109
include:
110
-
- internal/service/ec2
110
+
- "/internal/service/ec2"
111
111
patterns:
112
112
- pattern: func $NAME( ... )
113
113
- metavariable-pattern:
@@ -123,7 +123,7 @@ rules:
123
123
message: Do not use "EC2" in const name inside ec2 package
124
124
paths:
125
125
include:
126
-
- internal/service/ec2
126
+
- "/internal/service/ec2"
127
127
patterns:
128
128
- pattern: const $NAME = ...
129
129
- metavariable-pattern:
@@ -137,7 +137,7 @@ rules:
137
137
message: Do not use "EC2" in var name inside ec2 package
0 commit comments