From 321368f78e7dc29ac4a59082a6214bac078b4816 Mon Sep 17 00:00:00 2001 From: manx98 <1323517022@qq.com> Date: Mon, 26 May 2025 23:06:35 +0800 Subject: [PATCH] fix: lint-backend (exceeds the maximum of 140 characters) --- search/search.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/search/search.go b/search/search.go index f32dc308..c58cc22f 100644 --- a/search/search.go +++ b/search/search.go @@ -19,7 +19,8 @@ type searchOptions struct { } // Search searches for a query in a fs. -func Search(ctx context.Context, fs afero.Fs, scope, query string, checker rules.Checker, found func(path string, f os.FileInfo) error) error { +func Search(ctx context.Context, + fs afero.Fs, scope, query string, checker rules.Checker, found func(path string, f os.FileInfo) error) error { search := parseSearch(query) scope = filepath.ToSlash(filepath.Clean(scope))