If you open a project in Live Share, we get a root folder of vsls:/, but this code here converts it to file:///:
|
const fileUri = vs.Uri.file(fsPath(uri, { useRealCasing: !!config.normalizeFileCasing })).toString(); |
This results in the server analyzing the entire disk.
If you open a project in Live Share, we get a root folder of
vsls:/, but this code here converts it tofile:///:Dart-Code/src/extension/analysis/analyzer_lsp.ts
Line 421 in a895d3c
This results in the server analyzing the entire disk.