Skip to content
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

Standardize including/excluding files #13

Open
vuki656 opened this issue Nov 25, 2022 · 1 comment
Open

Standardize including/excluding files #13

vuki656 opened this issue Nov 25, 2022 · 1 comment

Comments

@vuki656
Copy link
Contributor

vuki656 commented Nov 25, 2022

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.

@vuki656
Copy link
Contributor Author

vuki656 commented Feb 20, 2023

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 .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant