Skip to content

Commit

Permalink
style(biome): apply lint/format
Browse files Browse the repository at this point in the history
  • Loading branch information
Mara-Li committed Jul 2, 2024
1 parent e6bfc93 commit 24d03be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/interfaces/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import type {
} from "src/interfaces/properties";
import type { MetadataExtractor } from "src/interfaces/settings";


export {
DEFAULT_SETTINGS,
EnumbSettingsTabId,
Expand Down
7 changes: 2 additions & 5 deletions src/utils/logs.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down Expand Up @@ -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;
Expand Down
4 changes: 1 addition & 3 deletions src/utils/status_bar.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit 24d03be

Please sign in to comment.