diff --git a/_ts/github/github.ts b/_ts/github/github.ts index 5b02956..d084aad 100644 --- a/_ts/github/github.ts +++ b/_ts/github/github.ts @@ -21,7 +21,6 @@ export class GitHub { const url = `https://api.github.com/users/${account.login}`; return this._gitHubApiRequest(url, (response) => { - // tslint:disable-next-line:strict-type-predicates if (typeof response.rawBody !== "object") { throw new ApiError(url, "did not return a JSON object as expected", response.rawBody); } diff --git a/_ts/state-store/cache.ts b/_ts/state-store/cache.ts index fcf07b7..8f791e9 100644 --- a/_ts/state-store/cache.ts +++ b/_ts/state-store/cache.ts @@ -115,8 +115,6 @@ function setItem(key: string, value: POJO): void { * Deserializes date strings when parsing JSON */ function reviver(key: string, value: unknown): unknown { - // TSLint Bug - https://github.com/palantir/tslint/issues/4107 - // tslint:disable-next-line:strict-type-predicates if (typeof value === "string" && jsonDatePattern.test(value)) { value = new Date(value); } diff --git a/_ts/util.ts b/_ts/util.ts index 95ae5a1..57e26b0 100644 --- a/_ts/util.ts +++ b/_ts/util.ts @@ -22,7 +22,6 @@ export interface JsonPOJO extends POJOof