Skip to content

Commit 8014783

Browse files
style: linting fix
1 parent 4e6c3a9 commit 8014783

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/rules/prefer-tacit.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ If `false`, only calls of identifiers are checked.
7979
const bar = {
8080
f(x) {
8181
return x + 1;
82-
}
83-
}
82+
},
83+
};
8484

8585
const foo = [1, 2, 3].map((x) => bar.f(x));
8686
```
@@ -93,8 +93,8 @@ const foo = [1, 2, 3].map((x) => bar.f(x));
9393
const bar = {
9494
f(x) {
9595
return x + 1;
96-
}
97-
}
96+
},
97+
};
9898

9999
const foo = [1, 2, 3].map(bar.f.bind(bar));
100100
```

0 commit comments

Comments
 (0)