Skip to content

Commit

Permalink
Fix CI coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
fcladera committed Mar 12, 2024
1 parent 1719031 commit d54b483
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/cpplint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@ jobs:
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
flags: --linelength=120 # Optional
filter: "-whitespace/braces \"
,-whitespace/parens"
#"-readability/braces\
# ,-whitespace/braces\
flags: --linelength=120
filter: "-whitespace/braces\"
,-whitespace/parens\
,-whitespace/newline\
,-build/c++11"
# -readability/braces\
# ,-whitespace/comments\
# ,-whitespace/indent\
# ,-whitespace/newline\
# ,-whitespace/operators\
# ,-whitespace/parens\
# " # Optional
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <nav_msgs/Odometry.h>
#include <ros/ros.h>
#include <std_msgs/Bool.h>
#include <vector>

class SO3ControlTester
{
Expand Down
2 changes: 1 addition & 1 deletion kr_mav_controllers/test/so3_control_nodelet_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ TEST(SO3ControlNodeletTest, Test1)
std::lock_guard<std::mutex> lock(tester.mutex);
EXPECT_FALSE(tester.so3_command_received_);
}
ASSERT_TRUE(tester.is_so3_cmd_publisher_active()); // checking if nodelet is active
ASSERT_TRUE(tester.is_so3_cmd_publisher_active()); // checking if nodelet is active
}

/*
Expand Down

0 comments on commit d54b483

Please sign in to comment.