Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Marked ErrorTolerantWalker as deprecated #563

Merged
merged 1 commit into from
Oct 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/utils/ErrorTolerantWalker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ import * as ts from 'typescript';
import * as Lint from 'tslint';

/**
* A base walker class that gracefully handles unexpected errors.
* Errors are often thrown when the TypeChecker is invoked.
* @deprecated
* The type checker is stable enough now that we don't need to wrap around it.
* You should directly extend Lint.AbstractRule yourself.
* @see https://github.com/Microsoft/tslint-microsoft-contrib/issues/556
*/
export class ErrorTolerantWalker extends Lint.RuleWalker {

Expand Down