You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./lint seems to trawl the entire repo looking for issues. It could be much smarter and only look at files for which I have local changes, or stashed changes.
I would also like it to be able to only check a subdirectory, like:
./lint css
The text was updated successfully, but these errors were encountered:
If you're on an up-to-date (or a sufficiently old!) branch, which #5597 implies you aren't, you should be able to pass files (but not directories) to lint, so find css -type f -print0 | xargs -0 ./lint. There's w3c/wpt-tools#184 for adding some recursive option (or maybe that should just be the default), and there's been occasional discussions about making it faster in various ways but most of that requires a fair amount of refactoring hence nothing has happened.
./lint seems to trawl the entire repo looking for issues. It could be much smarter and only look at files for which I have local changes, or stashed changes.
I would also like it to be able to only check a subdirectory, like:
The text was updated successfully, but these errors were encountered: