File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments