azz / prettier-tslint

Code ➡️ prettier ➡️ tslint --fix ➡️ Formatted Code ✨
https://npm.im/prettier-tslint
MIT License
225 stars 13 forks source link

Accept array of files #8

Closed KurtPreston closed 6 years ago

KurtPreston commented 6 years ago

Currently, if you want to lint / prettify files, you need to do them one at a time. When processing multiple files, I suspect it would probably execute much quicker if the fix and check methods accepted an array of files, so prettier and tslint could process them in bulk.

azz commented 6 years ago

Thanks for the suggestion! For the moment there would be no perf benefits from doing this as config has to be looked up on a per-file basis. So files.map(check) should be ok. If there are perf reasons introduced that ask for this we can reconsider.