Skip to content

Commit dc9c881

Browse files
committed
lint: add braces to one-line if per curly rule
1 parent 5addb56 commit dc9c881

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/rules/template-require-mandatory-role-attributes.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ function buildAxConceptsByTag() {
8282
const roles = new Set();
8383
for (const axName of axObjectNames) {
8484
const axRoles = AXObjectRoles.get(axName);
85-
if (!axRoles) continue;
85+
if (!axRoles) {
86+
continue;
87+
}
8688
for (const axRole of axRoles) {
8789
roles.add(axRole.name);
8890
}

0 commit comments

Comments
 (0)