Skip to content

Commit 8f46255

Browse files
committed
chore: lint
1 parent b4b37cc commit 8f46255

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ vite.config.ts
88
*.config.ts
99
coverage/
1010
src/proto/**/*
11-
cypress/e2e/**
11+
cypress/e2e/**
12+
scripts/export-indexeddb-to-zip.js

.eslintignore.web

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ playwright/
1313
playwright.config.ts
1414
playwright-snapshot.config.ts
1515
deploy/*.test.ts
16-
deploy/*.integration.test.ts
16+
deploy/*.integration.test.ts
17+
scripts/export-indexeddb-to-zip.js

src/application/database-yjs/__tests__/field-wrap-default.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ function createDatabaseDoc(wrap?: boolean): {
3434
const databaseDoc = new Y.Doc() as unknown as YDoc;
3535
const sharedRoot = databaseDoc.getMap(YjsEditorKey.data_section);
3636
const database = new Y.Map() as YDatabase;
37-
const fields = new Y.Map() as Y.Map<YDatabaseField>;
37+
const fields = new Y.Map<YDatabaseField>();
3838
const field = new Y.Map() as YDatabaseField;
39-
const views = new Y.Map() as Y.Map<YDatabaseView>;
39+
const views = new Y.Map<YDatabaseView>();
4040
const view = new Y.Map() as YDatabaseView;
4141
const fieldOrders = new Y.Array<{ id: string }>();
4242
const fieldSettings = new Y.Map() as YDatabaseFieldSettings;

0 commit comments

Comments
 (0)