We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc42ffb commit 5f2cf8aCopy full SHA for 5f2cf8a
Makefile
@@ -170,12 +170,8 @@ clean-cppad:
170
rm -rf cppad_code_gen
171
172
format:
173
- find humanoid_nmpc/ -name "*.cpp" -o -name "*.h" -o -name "*.hpp" | xargs clang-format -i && \
174
- black humanoid_nmpc/ robot_models/
175
-
176
-validate-format:
177
- lib/halodi-ros2-code-quality/Tools/check_code_style.sh robot_models humanoid_nmpc
178
+ find . -name "lib" -prune -o \( -name "*.cpp" -o -name "*.h" -o -name "*.hpp" \) -print | xargs clang-format -i && \
+ black . --exclude="lib/"
179
180
launch-g1-dummy-sim:
181
cd ${build_dir} && \
0 commit comments