diff options
| author | Oleksandr Gotgelf <[email protected]> | 2025-08-05 21:10:16 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-05 19:10:16 +0000 |
| commit | b4651452293295020874dfb6ba6707a47c555175 (patch) | |
| tree | 266ecc38afd59549c6440b5d9e800ed50b8f4207 /packages/cli/src | |
| parent | f2d6748432221d3956024b3f2f5aec9fc927aa34 (diff) | |
chore(settings): clean up comments in settings.ts (#5576)
Diffstat (limited to 'packages/cli/src')
| -rw-r--r-- | packages/cli/src/config/settings.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/cli/src/config/settings.ts b/packages/cli/src/config/settings.ts index 722af628..bb8c87b8 100644 --- a/packages/cli/src/config/settings.ts +++ b/packages/cli/src/config/settings.ts @@ -380,7 +380,7 @@ export function loadSettings(workspaceDir: string): LoadedSettings { const settingsErrors: SettingsError[] = []; const systemSettingsPath = getSystemSettingsPath(); - // FIX: Resolve paths to their canonical representation to handle symlinks + // Resolve paths to their canonical representation to handle symlinks const resolvedWorkspaceDir = path.resolve(workspaceDir); const resolvedHomeDir = path.resolve(homedir()); @@ -435,7 +435,6 @@ export function loadSettings(workspaceDir: string): LoadedSettings { }); } - // This comparison is now much more reliable. if (realWorkspaceDir !== realHomeDir) { // Load workspace settings try { |
