Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit f300c8b

Browse files
committed
fix: variable naming and windows slashes
1 parent 59ab9ef commit f300c8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/project-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,10 @@ export class ProjectManager implements Disposable {
338338
});
339339
}
340340

341-
isConfigDependency(uri: string): boolean {
341+
isConfigDependency(filePath: string): boolean {
342342
for (const config of this.configurations()) {
343343
config.ensureConfigFile();
344-
if (config.isExpectedDeclarationFile(uri)) {
344+
if (config.isExpectedDeclarationFile(toUnixPath(filePath))) {
345345
return true;
346346
}
347347
}

0 commit comments

Comments
 (0)