MyDisplayName
MyDisplayName

Reputation: 243

Angular 9 / TypeScript Static Code Analyzers

If I use ESLint then is there any reason to also use tslint? Or is ESLint mean to be a replacement?

Upvotes: 0

Views: 1013

Answers (1)

Jörg W Mittag
Jörg W Mittag

Reputation: 369458

The tslint homepage seems pretty clear:

TSLint has been deprecated as of 2019. […] typescript-eslint is now your best option for linting TypeScript.

There is a published roadmap for how to wind down tslint until December, 2019.

typescript-eslint is the future of listing for TypeScript.

Upvotes: 5

Related Questions