We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e4a731 commit d576a7bCopy full SHA for d576a7b
grid_map_filters/CMakeLists.txt
@@ -136,6 +136,7 @@ if(BUILD_TESTING)
136
list(APPEND AMENT_LINT_AUTO_EXCLUDE
137
ament_cmake_cpplint
138
ament_cmake_copyright
139
+ ament_cmake_uncrustify
140
)
141
ament_lint_auto_find_test_dependencies()
142
@@ -144,6 +145,17 @@ if(BUILD_TESTING)
144
145
ament_cpplint(
146
FILTERS -legal/copyright -build/include_order
147
148
+
149
+ # run uncrustify except for EigenLab.hpp
150
+ find_package(ament_cmake_uncrustify)
151
+ set(
152
+ _linter_excludes
153
+ include/EigenLab/EigenLab.hpp
154
+ )
155
+ ament_uncrustify(
156
+ EXCLUDE ${_linter_excludes}
157
+ LANGUAGE c++
158
159
endif()
160
161
0 commit comments