From 6b008d452af0190dd00f1dc85621d787dcd92129 Mon Sep 17 00:00:00 2001 From: daniel Date: Fri, 27 Dec 2024 22:41:14 +0100 Subject: [PATCH] chore: fix formatting --- src/SuggestionIndex.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/SuggestionIndex.ts b/src/SuggestionIndex.ts index 7a91fea..2ccf401 100644 --- a/src/SuggestionIndex.ts +++ b/src/SuggestionIndex.ts @@ -55,7 +55,9 @@ export class SuggestionIndex { this.suggestionsRefs = newSuggestionsRefs; const endTime = performance.now(); - console.log(`Rebuilt dataview autocomplete index (${this.suggestionsList.length} elements, ${(endTime - startTime).toFixed(2)}ms)`); + console.log( + `Rebuilt dataview autocomplete index (${this.suggestionsList.length} elements, ${(endTime - startTime).toFixed(2)}ms)`, + ); } public updateIndex(type: string, file: TFile, oldPath?: string) {