From 978c5559bfc48fb93a0933cb85bbf4b146aed1a3 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 06:17:05 +0000 Subject: [PATCH] style: format code with Gofumpt and Prettier This commit fixes the style issues introduced in 3e714ef according to the output from Gofumpt and Prettier. Details: https://github.com/vdaas/vald/pull/2579 --- hack/cspell/main.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hack/cspell/main.go b/hack/cspell/main.go index 94e903274a5..9edf3ef3130 100644 --- a/hack/cspell/main.go +++ b/hack/cspell/main.go @@ -17,9 +17,9 @@ type Override struct { } type CspellConfig struct { - Import []string `json:"import"` - IgnorePaths []string `json:"ignorePaths"` - IgnoreWords []string `json:"ignoreWords,omitempty"` + Import []string `json:"import"` + IgnorePaths []string `json:"ignorePaths"` + IgnoreWords []string `json:"ignoreWords,omitempty"` Overrides []Override `json:"overrides"` Patterns []Pattern `json:"patterns,omitempty"` } @@ -281,4 +281,3 @@ func unique(strings []string) []string { sort.Strings(result) // アルファベット順にソート return result } -