Skip to content

Commit c5c9978

Browse files
committed
chore: Fix formatting
1 parent e0e942b commit c5c9978

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

examples/integration-tests/db.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { dirname } from "node:path";
55
export async function openDb(
66
filename = "data/integration-tests-app.db",
77
): Promise<Database> {
8-
console.log({ filename });
98
if (filename !== ":memory:") {
109
await mkdir(dirname(filename), { recursive: true });
1110
}

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Best practices
1717
"strict": true,
1818
"skipLibCheck": true,
19-
"noFallthroughCasesInSwitch": true,
19+
"noFallthroughCasesInSwitch": true
2020
},
21-
"exclude": ["node_modules", ".git", "old"],
21+
"exclude": ["node_modules", ".git", "old"]
2222
}

0 commit comments

Comments
 (0)