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
Provide a glob/regex to specify which files to analyze
ignoreFiles
The text was updated successfully, but these errors were encountered:
@maneetgoyal have you tried unix find - it can be used with a regex.
find
for example:
./bin/ts-unused-exports ./example/simple/tsconfig.json $(cd ./example/simple; find . -regex "\.*/m[a-z]+\.ts")
On my Ubuntu box, this runs ts-unused-exports just for the matching files (math.ts)
ts-unused-exports
math.ts
You can try it by cloning this repo, and building it (see CONTRIBUTING.md)
Sorry, something went wrong.
That’s a helpful tip @mrseanryan 👍
No branches or pull requests
Provide a glob/regex to specify which files to analyze
ignoreFiles
- see the READMEThe text was updated successfully, but these errors were encountered: