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
So I think I figured out why I still get mis-formatted files even though I was using git clang-format: By default, it won't check .inl, and .tcc files.
So I think I figured out why I still get mis-formatted files even though I was using
git clang-format
: By default, it won't check.inl
, and.tcc
files.I did this locally:
git config clangformat.extensions "c,h,cc,cp,cpp,c++,cxx,hpp,inl,tcc"
and I think this also should be done in the CI, since the CI didn't complain about my misformatted
.inl
and.tcc
files.The text was updated successfully, but these errors were encountered: