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
(OP: @Niggler)
When jslint is used recursively, every directory is included. In particular, there are issues with third party node modules which I don't want to see.
Grep handles it with the --include and --exclude options:
--include=PATTERN Recurse in directories only searching file matching PATTERN. --exclude=PATTERN Recurse in directories skip file matching PATTERN.
Even a flag that skipped all of the node_modules directories would suffice for this purpose ...
The text was updated successfully, but these errors were encountered:
5de09c4
Fixed jshint#696: Add support for --exclude arg
79727c0
No branches or pull requests
(OP: @Niggler)
When jslint is used recursively, every directory is included. In particular, there are issues with third party node modules which I don't want to see.
Grep handles it with the --include and --exclude options:
Even a flag that skipped all of the node_modules directories would suffice for this purpose ...
The text was updated successfully, but these errors were encountered: