From f626d210e89a2e2d150959be6e4551ba42e25f5c Mon Sep 17 00:00:00 2001
From: Josh Gross <joshmgross@github.com>
Date: Thu, 15 Aug 2024 20:37:17 -0400
Subject: [PATCH] linting

---
 src/shared/search.ts | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/src/shared/search.ts b/src/shared/search.ts
index abf7ebe..5f8989c 100644
--- a/src/shared/search.ts
+++ b/src/shared/search.ts
@@ -81,7 +81,7 @@ function getMultiPathLCA(searchPaths: string[]): string {
 export interface SearchOptions {
   /**
    * Indicates whether files in the .git directory should be included in the artifact
-   * 
+   *
    * @default false
    */
   includeGitDirectory: boolean
@@ -89,13 +89,10 @@ export interface SearchOptions {
 
 export async function findFilesToUpload(
   searchPath: string,
-  searchOptions?: SearchOptions,
+  searchOptions?: SearchOptions
 ): Promise<SearchResult> {
   const searchResults: string[] = []
-  const globber = await glob.create(
-    searchPath,
-    getDefaultGlobOptions()
-  )
+  const globber = await glob.create(searchPath, getDefaultGlobOptions())
   const rawSearchResults: string[] = await globber.glob()
 
   /*