We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, only files that are included in tsconfig are linted and everything else that should be linted throws an error.
We should have a separate tsconfig file that includes all the files that are user managed and use that file in eslint config file.
The text was updated successfully, but these errors were encountered:
Errors on files starting with . can be resolved with:
.
{ "extends": "./tsconfig.json", "include": ["./**/*.js", "./**/*.ts", ".*.js", ".*.ts"] }
Seems like the * doesn't catch files starting with .
*
Sorry, something went wrong.
No branches or pull requests
Currently, only files that are included in tsconfig are linted and everything else that should be linted throws an error.
We should have a separate tsconfig file that includes all the files that are user managed and use that file in eslint config file.
The text was updated successfully, but these errors were encountered: