Skip to content

Commit 9871d1c

Browse files
authored
feat: add *.db rule for SQLite databases (#209)
1 parent 577a72f commit 9871d1c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

update.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,11 @@ const denoRuntime = [
390390
...env,
391391
]
392392

393+
const sqlite = [
394+
'*.db-shm',
395+
'*.db-wal',
396+
]
397+
393398
const razor = [
394399
'$(capture).razor.css',
395400
'$(capture).razor.scss',
@@ -513,6 +518,7 @@ const full = sortObject({
513518
'*.ex': stringify(phoenixLiveView),
514519
'*.tex': stringify(tex),
515520
'deno.json*': stringify(denoRuntime),
521+
'*.db': stringify(sqlite),
516522
'*.razor': stringify(razor),
517523
...Object.fromEntries(Object.entries(frameworks).map(([n, i]) => [n, stringify([...i, ...libraries])])),
518524
...svelteKitRouting,

0 commit comments

Comments
 (0)