From 24d03be754840eae0a9039f9a179b5fda4846268 Mon Sep 17 00:00:00 2001 From: Mara Date: Tue, 2 Jul 2024 23:19:29 +0200 Subject: [PATCH] style(biome): apply lint/format --- src/interfaces/index.ts | 1 - src/utils/logs.ts | 7 ++----- src/utils/status_bar.ts | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/src/interfaces/index.ts b/src/interfaces/index.ts index 1c4aabec..1a4290b8 100644 --- a/src/interfaces/index.ts +++ b/src/interfaces/index.ts @@ -33,7 +33,6 @@ import type { } from "src/interfaces/properties"; import type { MetadataExtractor } from "src/interfaces/settings"; - export { DEFAULT_SETTINGS, EnumbSettingsTabId, diff --git a/src/utils/logs.ts b/src/utils/logs.ts index e4bae247..d1cef707 100644 --- a/src/utils/logs.ts +++ b/src/utils/logs.ts @@ -1,9 +1,6 @@ import { Notice, Platform, setIcon, TFile } from "obsidian"; import type Enveloppe from "../main"; -import { - type EnveloppeSettings, - type Properties, -} from "@interfaces"; +import type { EnveloppeSettings, Properties } from "@interfaces"; import i18next from "i18next"; import type Publisher from "../GitHub/upload"; @@ -61,7 +58,7 @@ export class Logs { text: message, cls: ["enveloppe", cls, "icons"], }); - setIcon(span, icon) + setIcon(span, icon); noticeFrag.createEl("span", { cls: ["enveloppe", cls, "notification"], }).innerHTML = message; diff --git a/src/utils/status_bar.ts b/src/utils/status_bar.ts index df5e0e58..80d5144b 100644 --- a/src/utils/status_bar.ts +++ b/src/utils/status_bar.ts @@ -1,6 +1,4 @@ -import { - type Properties, -} from "@interfaces"; +import type { Properties } from "@interfaces"; import i18next from "i18next"; import { setIcon, type Notice } from "obsidian"; import type { Logs } from "./logs";