mirror of
https://github.com/devonthesofa/obsidian-note-status.git
synced 2026-07-22 05:45:04 +00:00
fix: resolve linting errors from mixed spaces and tabs
This commit is contained in:
parent
2c2198ad3c
commit
6aee0cb2fe
1 changed files with 14 additions and 14 deletions
|
|
@ -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<string, string>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue