-
Notifications
You must be signed in to change notification settings - Fork 32
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
Allow wildcards (globbing) #21
Comments
I recently changed But I agree, |
I've added a PR that enables globbing. It's something I'd like to use for |
Now available in 1.0.35 |
Currently, the gulp-clang-format plugin is our method to allow globbing all the files under a project.
If this fails (in checked-diff mode), it prints a command allowing us to re-format the correct files.
However, it's convenient to have a command-line which can be run to re-format everything in the project. The native clang-format binary doesn't support this (no way to expand nested directories in shell). But our wrapper could.
Then we could do something like
package.json
:scripts: { 'format': 'clang-format -i' }
and
npm run format
would give the right versions and config for everything.The text was updated successfully, but these errors were encountered: