remove tslint configuration

This commit is contained in:
Alexander T
2019-06-27 13:49:35 +03:00
parent 136f4cfc0f
commit 769bb0b475
42 changed files with 30 additions and 97 deletions

View File

@@ -1638,7 +1638,7 @@ namespace ts {
case SyntaxKind.NullKeyword:
reportInvalidOptionValue(option && option.name === "extends"); // "extends" is the only option we don't allow null/undefined for
return null; // tslint:disable-line:no-null-keyword
return null;
case SyntaxKind.StringLiteral:
if (!isDoubleQuotedString(valueExpression)) {
@@ -2007,7 +2007,6 @@ namespace ts {
}
function isNullOrUndefined(x: any): x is null | undefined {
// tslint:disable-next-line:no-null-keyword
return x === undefined || x === null;
}