We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5addb56 commit dc9c881Copy full SHA for dc9c881
1 file changed
lib/rules/template-require-mandatory-role-attributes.js
@@ -82,7 +82,9 @@ function buildAxConceptsByTag() {
82
const roles = new Set();
83
for (const axName of axObjectNames) {
84
const axRoles = AXObjectRoles.get(axName);
85
- if (!axRoles) continue;
+ if (!axRoles) {
86
+ continue;
87
+ }
88
for (const axRole of axRoles) {
89
roles.add(axRole.name);
90
}
0 commit comments