- linting

This commit is contained in:
Eugene Zolenko 2017-04-20 15:05:43 -06:00
parent 67bd6d258d
commit 7a815cf685
3 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ export class LanguageServiceHost implements ts.LanguageServiceHost
{
fileName = this.normalize(fileName);
let snapshot = ts.ScriptSnapshot.fromString(data);
const snapshot = ts.ScriptSnapshot.fromString(data);
this.snapshots[fileName] = snapshot;
this.versions[fileName] = (this.versions[fileName] || 0) + 1;
return snapshot;

View File

@ -13,4 +13,4 @@ export interface ICache <DataType>
touch(name: string): void;
roll(): void;
};
}

View File

@ -19,8 +19,8 @@
"max-line-length": [false],
"object-literal-sort-keys": false,
"curly": false,
"ordered-imports": [],
"only-arrow-functions": [],
"ordered-imports": [ false ],
"only-arrow-functions": [ false ],
"class-name": true
}
}