-
Notifications
You must be signed in to change notification settings - Fork 200
Retrying clang-format
#366
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
base: develop
Are you sure you want to change the base?
Conversation
git ls-files 'src/*.cpp' 'src/*.hpp' 'src/*.c' 'src/*.h' | xargs -n1 clang-format -i
git ls-files 'plugin/*.cpp' 'plugin/*.hpp' 'plugin/*.c' 'plugin/*.h' | xargs -n1 clang-format -i NOTE: I had to add `/* clang-format off/on */` before `//ff-c++` build annotations
Note that I did essentially nothing here. From what I can tell, all credit is to @sgarnotel. Some questions for review:
|
|
Sounds good. In response to 3., do you (or the other developers) have any suggestions for alterations to |
Sorry for the unbelievably late answer, but reusing the current |
No worries. I agree that patience is a virtue with such a large PR. Also, since there is no functional change, there is no urgency for getting this merged. Perhaps this could be wrapped in with the next major release. |
No real changes to
src
oretc
folders, just ran the lines:In the
plugin
folder, some/* clang-format off */
and/* clang-format on */
were added, then ran:git ls-files 'plugin/*.cpp' 'plugin/*.hpp' 'plugin/*.c' 'plugin/*.h' | xargs -n1 clang-format -i
Ref: f715746