Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
qin-guan committed Aug 26, 2023
1 parent 10d42f4 commit fb0e830
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@ logs

# SQLite files
*.db

# ESLint
.eslintcache
2 changes: 1 addition & 1 deletion server/db/schema.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { InferSelectModel } from 'drizzle-orm'
import { blob, integer, sqliteTable, text } from 'drizzle-orm/sqlite-core'
import { blob, sqliteTable, text } from 'drizzle-orm/sqlite-core'

export const users = sqliteTable('users', {
id: text('id').primaryKey(),
Expand Down
2 changes: 1 addition & 1 deletion server/drizzle/meta/0000_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
"tables": {},
"columns": {}
}
}
}
2 changes: 1 addition & 1 deletion server/drizzle/meta/0001_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,4 @@
"tables": {},
"columns": {}
}
}
}
2 changes: 1 addition & 1 deletion server/drizzle/meta/0002_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@
"tables": {},
"columns": {}
}
}
}
2 changes: 1 addition & 1 deletion server/drizzle/meta/0003_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@
"tables": {},
"columns": {}
}
}
}
2 changes: 1 addition & 1 deletion server/drizzle/meta/_journal.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"5","dialect":"sqlite","entries":[{"idx":0,"version":"5","when":1691306551386,"tag":"0000_violet_stingray","breakpoints":true},{"idx":1,"version":"5","when":1692776975892,"tag":"0001_blue_nuke","breakpoints":true},{"idx":2,"version":"5","when":1692896798300,"tag":"0002_chilly_golden_guardian","breakpoints":true},{"idx":3,"version":"5","when":1692932067010,"tag":"0003_shocking_unus","breakpoints":true}]}
{ "version": "5", "dialect": "sqlite", "entries": [{ "idx": 0, "version": "5", "when": 1691306551386, "tag": "0000_violet_stingray", "breakpoints": true }, { "idx": 1, "version": "5", "when": 1692776975892, "tag": "0001_blue_nuke", "breakpoints": true }, { "idx": 2, "version": "5", "when": 1692896798300, "tag": "0002_chilly_golden_guardian", "breakpoints": true }, { "idx": 3, "version": "5", "when": 1692932067010, "tag": "0003_shocking_unus", "breakpoints": true }] }
2 changes: 1 addition & 1 deletion server/trpc/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { Storage } from 'unstorage'
import type { AppConfig } from 'nuxt/schema'
import type { DrizzleD1Database } from 'drizzle-orm/d1'
import type { BetterSQLite3Database } from 'drizzle-orm/better-sqlite3'
import type { AuthRequest, Session } from 'lucia'
import type { AuthRequest } from 'lucia'

/**
* Defines your inner context shape.
Expand Down

0 comments on commit fb0e830

Please sign in to comment.