Skip to content

Commit 4392c43

Browse files
controls
1 parent 11f986f commit 4392c43

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2388,6 +2388,15 @@ Other Style Guides
23882388
thing1();
23892389
}
23902390
2391+
// good
2392+
if (
2393+
foo === 911
2394+
&& bar === 'abc'
2395+
) {
2396+
console.log('911 abc');
2397+
thing1();
2398+
}
2399+
23912400
// good
23922401
if (
23932402
(foo === 123 || bar === 'abc')

0 commit comments

Comments
 (0)