-
Notifications
You must be signed in to change notification settings - Fork 400
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
Add .ts and .tsx support on ESLint #1734
Comments
Yes, a PR for this would be welcome. A few questions that I have regarding support of TS files with Hound and ESLint.
|
|
I believe this PR will force Hound to scan the files. If users do not want the files scanned they can use eslint built in functionality with the |
The related PR was merged. |
Hi, our project is using ESLint to lint our
.ts
and.tsx
files. We are doing this because TSLint is being deprecated and moved to @typescript-eslint.Currently, the hound ESLint parser is configured to parse
.js .es6 .jsx .vue
files. Would you be open to either including.ts
and.tsx
files in theFILE_REGEXP
or a PR to extend hound's configuration to accept more files extension types?As an aside, eslint itself only lints
js
files by default. In order to lint your files an--ext=.ts,.tsx
argument is necessary for ESlint to scan typescript files.The text was updated successfully, but these errors were encountered: