Skip to content

Commit 047155b

Browse files
style: format code with Prettier
This commit fixes the style issues introduced in 6d0a3b3 according to the output from Prettier. Details: #20
1 parent 6d0a3b3 commit 047155b

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
- [ ] 🌟 Enable [private vulnerability reporting](https://github.com/react18-tools/esbuild-plugin-react18/security)
1717
- [ ] Set up `CodeCov`
1818
- Visit Codecov and set up your repo
19-
- Create [repository secret]((https://github.com/react18-tools/esbuild-plugin-react18/settings/secrets/actions)) for `CODECOV_TOKEN`
19+
- Create [repository secret](<(https://github.com/react18-tools/esbuild-plugin-react18/settings/secrets/actions)>) for `CODECOV_TOKEN`
2020
- [ ] Set up `CodeClimate`
2121
- Visit CodeClimate and set up your repo
2222
- Create [repository secret] for `CC_TEST_REPORTER_ID`

lib/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,6 @@ export default MyComponent() {
103103

104104
This library is licensed under the MPL-2.0 open-source license.
105105

106-
107-
108106
> <img src=".https://github.com/react18-tools/esbuild-plugin-react18/blob/main/popper.png?raw=true" style="height: 20px"/> Please consider enrolling in [our courses](https://mayank-chaudhari.vercel.app/courses) or [sponsoring](https://github.com/sponsors/mayank1513) our work.
109107

110108
<hr />

packages/shared/src/client/dummy/dummy.test.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { afterEach, describe, test } from "vitest";
33
import { Dummy } from "./dummy";
44

55
describe.concurrent("dummy", () => {
6-
afterEach(cleanup);
6+
afterEach(cleanup);
77

8-
test("Dummy test - test if renders without errors", ({ expect }) => {
9-
const clx = "my-class";
10-
render(<Dummy className={clx} />);
11-
expect(screen.getByTestId("dummy").classList).toContain(clx);
12-
});
8+
test("Dummy test - test if renders without errors", ({ expect }) => {
9+
const clx = "my-class";
10+
render(<Dummy className={clx} />);
11+
expect(screen.getByTestId("dummy").classList).toContain(clx);
12+
});
1313
});

0 commit comments

Comments
 (0)