boolean-trivia lint rule: Lint for null/undefined too

This commit is contained in:
Andy Hanson
2017-04-07 13:13:39 -07:00
parent 3029b8fe38
commit 7320891933
24 changed files with 92 additions and 68 deletions

View File

@@ -98,7 +98,7 @@ namespace Utils {
useCaseSensitiveFileNames: boolean;
constructor(currentDirectory: string, useCaseSensitiveFileNames: boolean) {
super(undefined, "");
super(/*fileSystem*/ undefined, "");
this.fileSystem = this;
this.root = new VirtualDirectory(this, "");
this.currentDirectory = currentDirectory;