From 6aee0cb2fe79e8f3f93e050a0639ed0e679a01aa Mon Sep 17 00:00:00 2001 From: Aleix Soler Date: Thu, 19 Mar 2026 19:12:06 +0100 Subject: [PATCH] fix: resolve linting errors from mixed spaces and tabs --- types/pluginSettings.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/types/pluginSettings.ts b/types/pluginSettings.ts index 69909e6..a558fa3 100644 --- a/types/pluginSettings.ts +++ b/types/pluginSettings.ts @@ -2,18 +2,18 @@ import { NoteStatus } from "./noteStatus"; export type StatusFrontmatterMapping = | { - id: string; - scope: "template"; - templateId: string; - frontmatterKeys: string[]; - } + id: string; + scope: "template"; + templateId: string; + frontmatterKeys: string[]; + } | { - id: string; - scope: "status"; - templateId?: string; - statusName: string; - frontmatterKeys: string[]; - }; + id: string; + scope: "status"; + templateId?: string; + statusName: string; + frontmatterKeys: string[]; + }; export interface StatusTemplate { id: string; @@ -37,9 +37,9 @@ export type SyncGroup = export type PluginSettings = { fileExplorerIconPosition: - | "absolute-right" - | "file-name-left" - | "file-name-right"; + | "absolute-right" + | "file-name-left" + | "file-name-right"; fileExplorerIconFrame: "always" | "never"; fileExplorerIconColorMode: "status" | "theme"; statusColors: Record;