Skip to content

Commit aa5c51c

Browse files
committed
Fixing lint errors
1 parent 50f0033 commit aa5c51c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/compiler/sys.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,10 +425,10 @@ namespace ts {
425425
function directoryExists(path: string): boolean {
426426
return fileSystemEntryExists(path, FileSystemEntryKind.Directory);
427427
}
428-
428+
429429
function getDirectories(path: string): string[] {
430430
return filter<string>(_fs.readdirSync(path), p => fileSystemEntryExists(combinePaths(path, p), FileSystemEntryKind.Directory));
431-
}
431+
}
432432

433433
return {
434434
args: process.argv.slice(2),

tests/cases/unittests/cachingInServerLSHost.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace ts {
8282
const projectService = new server.ProjectService(serverHost, logger);
8383
const rootScriptInfo = projectService.openFile(rootFile, /* openedByClient */true);
8484
const project = projectService.createInferredProject(rootScriptInfo);
85-
project.setProjectOptions( {files: [rootScriptInfo.fileName], compilerOptions: {module: ts.ModuleKind.AMD} } );
85+
project.setProjectOptions( {files: [rootScriptInfo.fileName], compilerOptions: {module: ts.ModuleKind.AMD} } );
8686
return {
8787
project,
8888
rootScriptInfo
@@ -145,7 +145,7 @@ namespace ts {
145145
catch (e) {
146146
assert.isTrue(e.message.indexOf(`Could not find file: '${imported.name}'.`) === 0);
147147
}
148-
148+
149149
assert.isTrue(fileExistsIsCalled);
150150
}
151151
{

0 commit comments

Comments
 (0)