Enable "space-within-parens" lint rule (#18856)

This commit is contained in:
Andy
2017-10-02 08:36:26 -07:00
committed by GitHub
parent d821bbf3f3
commit b883fcbfdd
4 changed files with 4 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ namespace ts {
const rootScriptInfo = projectService.getOrCreateScriptInfo(rootFile, /* openedByClient */ true, /*containingProject*/ undefined);
const project = projectService.createInferredProjectWithRootFileIfNecessary(rootScriptInfo);
project.setCompilerOptions({ module: ts.ModuleKind.AMD, noLib: true } );
project.setCompilerOptions({ module: ts.ModuleKind.AMD, noLib: true });
return {
project,
rootScriptInfo