chore: add missing space from imports

This commit is contained in:
Elian Doran 2026-01-02 00:21:50 +02:00
parent 053812e5f0
commit 920fde69bb
No known key found for this signature in database
8 changed files with 8 additions and 8 deletions

View File

@ -6,7 +6,7 @@ import { ColumnComponent } from "tabulator-tables";
import type { Attribute } from "../services/attribute_parser.js";
import froca from "../services/froca.js";
import { initLocale,t } from "../services/i18n.js";
import { initLocale, t } from "../services/i18n.js";
import keyboardActionsService from "../services/keyboard_actions.js";
import linkService, { type ViewScope } from "../services/link.js";
import type LoadResults from "../services/load_results.js";

View File

@ -8,7 +8,7 @@ import search from "../services/search.js";
import server from "../services/server.js";
import utils from "../services/utils.js";
import type FAttachment from "./fattachment.js";
import type { AttributeType,default as FAttribute } from "./fattribute.js";
import type { AttributeType, default as FAttribute } from "./fattribute.js";
const LABEL = "label";
const RELATION = "relation";

View File

@ -1,7 +1,7 @@
import { sleepFor } from "@triliumnext/commons";
import { Application } from "express";
import supertest from "supertest";
import { afterAll,afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
import { refreshAuth } from "../../services/auth.js";
import config from "../../services/config.js";

View File

@ -1,5 +1,5 @@
import { deferred, LOCALES } from "@triliumnext/commons";
import { beforeAll,describe, expect, it } from "vitest";
import { beforeAll, describe, expect, it } from "vitest";
import becca from "../becca/becca.js";
import branches from "./branches.js";

View File

@ -5,7 +5,7 @@ import dateUtils from "./date_utils.js";
import keyboardActions from "./keyboard_actions.js";
import log from "./log.js";
import optionService from "./options.js";
import { isWindows,randomSecureToken } from "./utils.js";
import { isWindows, randomSecureToken } from "./utils.js";
function initDocumentOptions() {
optionService.createOption("documentId", randomSecureToken(16), false);

View File

@ -1,5 +1,5 @@
import { trimIndentation } from "@triliumnext/commons";
import { beforeEach,describe, expect, it, vi } from "vitest";
import { beforeEach, describe, expect, it, vi } from "vitest";
import becca from "../becca/becca.js";
import BBranch from "../becca/entities/bbranch.js";

View File

@ -1,5 +1,5 @@
import { trimIndentation } from "@triliumnext/commons";
import { beforeAll, describe, expect,it, vi } from "vitest";
import { beforeAll, describe, expect, it, vi } from "vitest";
import { buildShareNote, buildShareNotes } from "../test/shaca_mocking.js";
import { getContent, renderCode, type Result } from "./content_renderer.js";

View File

@ -4,7 +4,7 @@ import ejs from "ejs";
import escapeHtml from "escape-html";
import { readFileSync } from "fs";
import { t } from "i18next";
import { HTMLElement, Options,parse, TextNode } from "node-html-parser";
import { HTMLElement, Options, parse, TextNode } from "node-html-parser";
import { join } from "path";
import becca from "../becca/becca.js";