From b9f607458c98068947c3d701b06a67a302140027 Mon Sep 17 00:00:00 2001 From: wep21 Date: Sun, 26 May 2024 14:13:29 +0900 Subject: [PATCH] apply uncrustify except for EigenLab.hpp Signed-off-by: wep21 --- grid_map_filters/CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/grid_map_filters/CMakeLists.txt b/grid_map_filters/CMakeLists.txt index 9d0cba5a..dea08ddd 100644 --- a/grid_map_filters/CMakeLists.txt +++ b/grid_map_filters/CMakeLists.txt @@ -144,6 +144,16 @@ if(BUILD_TESTING) ament_cpplint( FILTERS -legal/copyright -build/include_order ) + + # run uncrustify except for EigenLab.hpp + set( + _linter_excludes + include/EigenLab/EigenLab.hpp + ) + ament_uncrustify( + EXCLUDE ${_linter_excludes} + LANGUAGE c++ + ) endif() ament_lint_auto_find_test_dependencies() endif()