-
Couldn't load subscription status.
- Fork 24
fix some reggression from #30 #31
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
Conversation
|
It feels good to be done adding features and just fixing bugs. With every bug I find and fix, I feel that we are that much closer to a solid solution. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, agree, only introducing this action to the real project could help to improve it.
Approved and ready to merge.
This fixes a couple scenarios:
versionnumber for which the .clang-format file was designed.ignorepaths usedstr.lstrip("./")which would lead to stripping the left-most.OR/. I have replacedlstrip("./")withstr.replace("./", "", 1), so only the exact left-most sequence of./is stripped../in a path that was prefixed with a!. Previously the relative path syntax was only striped from paths that didn't have the!prefix.