Skip to content

Commit 78792df

Browse files
author
Zhengbo Li
committed
Fix linting issues
1 parent 37949a3 commit 78792df

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/cases/unittests/tsserverProjectSystem.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -526,15 +526,15 @@ namespace ts {
526526
const file1: FileOrFolder = {
527527
path: "/a/b/file1.ts",
528528
content: `import { T } from "module1";`
529-
}
529+
};
530530
const nodeModuleFile: FileOrFolder = {
531531
path: "/a/b/node_modules/module1.ts",
532532
content: `export interface T {}`
533-
}
533+
};
534534
const classicModuleFile: FileOrFolder = {
535535
path: "/a/module1.ts",
536536
content: `export interface T {}`
537-
}
537+
};
538538
const configFile: FileOrFolder = {
539539
path: "/a/b/tsconfig.json",
540540
content: `{
@@ -566,6 +566,6 @@ namespace ts {
566566
host.triggerFileWatcherCallback(configFile.path);
567567
checkConfiguredProjectActualFiles(project, [file1.path, classicModuleFile.path]);
568568
checkNumberOfInferredProjects(projectService, 1);
569-
})
569+
});
570570
});
571571
}

0 commit comments

Comments
 (0)