Skip to content

Commit 064e3bf

Browse files
:) conflicting with rule 8.2 :D
1 parent ffe4fe9 commit 064e3bf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,16 +1072,16 @@ Other Style Guides
10721072
10731073
```javascript
10741074
// bad
1075-
(foo) =>
1075+
foo =>
10761076
bar;
10771077

1078-
(foo) =>
1078+
foo =>
10791079
(bar);
10801080

10811081
// good
1082-
(foo) => bar;
1083-
(foo) => (bar);
1084-
(foo) => (
1082+
foo => bar;
1083+
foo => (bar);
1084+
foo => (
10851085
bar
10861086
)
10871087
```

0 commit comments

Comments
 (0)