Skip to content

Commit 1ab506c

Browse files
committed
chore: add index imports for autolinting
Signed-off-by: SeeuSim <[email protected]>
1 parent 651d07b commit 1ab506c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
["^(?:os|path|http|fs|crypto|util|events|stream|url|zlib|querystring|tls|dgram|net|dns|child_process|cluster|readline|vm|assert|buffer|process|timers)(\/.*)?$"],
8989
["^(?!(@\/|\\.\\.\/|\\.\/))"],
9090
["^@\/"],
91-
["^(?:\\.\/|\\.\\.\/)"]
91+
["^(?:\\.\/|\\.\\.\/|\\.)"]
9292
]
9393
}
9494
]

backend/user/src/lib/db/seed.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import { admin as adminTable, db, users as usersTable } from '.';
21
import { eq } from 'drizzle-orm';
32

43
import { generatePasswordHash } from '@/lib/passwords';
54

5+
import { admin as adminTable, db, users as usersTable } from '.';
6+
67
const TEST_USER_CREDENTIALS = {
78
username: 'testuser01',
89

0 commit comments

Comments
 (0)