-
-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert source code into TypeScript #437
Comments
I'm generally 👎 for this proposal, particularly since we're not using TypeScript in ESLint core. Relevant PR: eslint/eslint#12082 |
I agree with @kaicataldo. I’d like ESLint to remain pure JavaScript to enable us to best test ESLint on itself. |
Hey, this is espree, not ESLint. |
Espree is part of the ESLint project. |
Note that webpack is using typescript in --checkJs to get at least some typechecking without needing a build step. Not sure if that matters to you. |
We aren't going to move forward with this, so closing. |
Should we consider converting the source code of this project into TypeScript? We can leverage type checking with TypeScript. Also,
.d.ts
files can be generated for downstream users when compiling.It may take long time to do this coversion, so we can enable
allowJs
and start progressive conversion.The text was updated successfully, but these errors were encountered: