Skip to content

Commit 7cd774a

Browse files
committed
format
1 parent 5d92108 commit 7cd774a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/config.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ function scheduleConfigWarning(
642642
if (!notify) return
643643
try {
644644
notify(title, message)
645-
} catch { }
645+
} catch {}
646646
}, 7000)
647647
}
648648

@@ -766,8 +766,8 @@ function getConfigPaths(directory?: string): {
766766
const global = existsSync(GLOBAL_CONFIG_PATH_JSONC)
767767
? GLOBAL_CONFIG_PATH_JSONC
768768
: existsSync(GLOBAL_CONFIG_PATH_JSON)
769-
? GLOBAL_CONFIG_PATH_JSON
770-
: null
769+
? GLOBAL_CONFIG_PATH_JSON
770+
: null
771771

772772
let configDir: string | null = null
773773
const opencodeConfigDir = process.env.OPENCODE_CONFIG_DIR
@@ -777,8 +777,8 @@ function getConfigPaths(directory?: string): {
777777
configDir = existsSync(configJsonc)
778778
? configJsonc
779779
: existsSync(configJson)
780-
? configJson
781-
: null
780+
? configJson
781+
: null
782782
}
783783

784784
let project: string | null = null
@@ -790,8 +790,8 @@ function getConfigPaths(directory?: string): {
790790
project = existsSync(projectJsonc)
791791
? projectJsonc
792792
: existsSync(projectJson)
793-
? projectJson
794-
: null
793+
? projectJson
794+
: null
795795
}
796796
}
797797

0 commit comments

Comments
 (0)