Skip to content

Commit 5a06fd6

Browse files
committed
chore: upgrade eslint config
1 parent 65dd604 commit 5a06fd6

File tree

8 files changed

+12
-24
lines changed

8 files changed

+12
-24
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"registry": "https://registry.npmjs.org/"
8080
},
8181
"devDependencies": {
82-
"@subframe7536/eslint-config": "^1.3.0",
82+
"@subframe7536/eslint-config": "^1.3.1",
8383
"@subframe7536/type-utils": "^0.2.0",
8484
"@types/node": "^22.15.30",
8585
"bumpp": "^10.1.1",

pnpm-lock.yaml

Lines changed: 5 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import { changes, close, lastInsertRowId, parseOpenV2Flag, run, stream } from '.
1616
*/
1717
export async function initSQLite(options: Promisable<InitSQLiteOptions>): Promise<SQLiteDB> {
1818
const core = await initSQLiteCore(options)
19-
/// keep-sorted
2019
return {
2120
...core,
2221
changes: () => changes(core),
@@ -47,7 +46,7 @@ export async function initSQLiteCore(
4746
path,
4847
parseOpenV2Flag(readonly),
4948
)
50-
/// keep-sorted
49+
5150
return {
5251
db: pointer,
5352
path,

src/vfs/fs-handle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export async function useFsHandleStorage(
4141
const sqliteModule = await SQLiteAsyncESMFactory(
4242
options.url ? { locateFile: () => options.url } : undefined,
4343
)
44-
/// keep-sorted
44+
4545
return {
4646
path,
4747
sqliteModule,

src/vfs/idb-memory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function useIdbMemoryStorage(
3131
const sqliteModule = await SQLiteAsyncESMFactory(
3232
url ? { locateFile: () => url } : undefined,
3333
)
34-
/// keep-sorted
34+
3535
return {
3636
path: fileName.endsWith('.db') ? fileName : `${fileName}.db`,
3737
sqliteModule,

src/vfs/idb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export async function useIdbStorage(
4343
)
4444
const idbName = fileName.endsWith('.db') ? fileName : `${fileName}.db`
4545
const vfsOptions = { idbName, lockPolicy, lockTimeout }
46-
/// keep-sorted
46+
4747
return {
4848
path: idbName,
4949
sqliteModule,

src/vfs/memory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function useMemoryStorage(
3131
const sqliteModule = await SQLiteESMFactory(
3232
url ? { locateFile: () => url } : undefined,
3333
)
34-
/// keep-sorted
34+
3535
return {
3636
path: ':memory:',
3737
sqliteModule,

src/vfs/opfs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export async function useOpfsStorage(
3939
const sqliteModule = await SQLiteESMFactory(
4040
options.url ? { locateFile: () => options.url } : undefined,
4141
)
42-
/// keep-sorted
42+
4343
return {
4444
path,
4545
sqliteModule,

0 commit comments

Comments
 (0)