Skip to content

Commit 29c3aaf

Browse files
committed
コードの整形と不要なファイルの削除
1 parent 6ab4f23 commit 29c3aaf

File tree

11 files changed

+2596
-1342
lines changed

11 files changed

+2596
-1342
lines changed

backend/.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.prettierrc
22
node_modules
3+
pnpm-lock.yaml
34
._*

backend/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
</a>
2525
</div>
2626

27-
2827
## 注意点
2928

3029
> [!IMPORTANT]

backend/__test__/schemas/ForbiddenError.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, it, expect } from "vitest";
22
import {
33
ForbiddenError,
4-
createForbiddenError
4+
createForbiddenError,
55
} from "@/schemas/ForbiddenError.js";
66

77
describe("ForbiddenError", () => {

backend/__test__/schemas/NotFoundError.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import { describe, it, expect } from "vitest";
2-
import {
3-
NotFoundError,
4-
createNotFoundError
5-
} from "@/schemas/NotFoundError.js";
2+
import { NotFoundError, createNotFoundError } from "@/schemas/NotFoundError.js";
63

74
describe("NotFoundError", () => {
85
it("バリデーションが通る(正常系)", () => {

backend/__test__/schemas/UnauthorizedError.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, it, expect } from "vitest";
22
import {
33
UnauthorizedError,
4-
createUnauthorizedError
4+
createUnauthorizedError,
55
} from "@/schemas/UnauthorizedError.js";
66

77
describe("UnauthorizedError", () => {

0 commit comments

Comments
 (0)