-
-
Notifications
You must be signed in to change notification settings - Fork 33
Closed
Labels
Description
We're still using TSLint which has been deprecated for some time now. Ideally we move to a different stack for linting. The most mature option is typescript-eslint, which is recommended as the official replacement of TSLint. It does carry a lot of dependencies and needs ESLint to function.
Alternatively, there has been a lot of development around OXC (JavaScript Oxidation Compiler), specifically oxclint. This linter is a lot less mature but carries no dependencies and is extremely fast due to it being a native binary, but also lacks all the features such as type-aware linting.
@rolandjitsu I think for now we should probably go for the ESLint + typescript-eslint combo, even if it is a bit more maintenance. WDYT?
rolandjitsu