-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from Fool-Stuck/chore/fix_style_with_precommit
chore: fix style with pre-commit
- Loading branch information
Showing
14 changed files
with
56 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,4 @@ IncludeCategories: | |
# Local package headers | ||
- Regex: '".*"' | ||
Priority: 1 | ||
CaseSensitive: true | ||
CaseSensitive: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,6 @@ log/ | |
|
||
# Python | ||
*.pyc | ||
|
||
# prettier | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
*.param.yaml | ||
*.rviz | ||
*.rviz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
set noparent | ||
linelength=100 | ||
includeorder=standardcfirst | ||
filter=-build/c++11 | ||
filter=-build/namespaces_literals | ||
filter=-runtime/references | ||
filter=-whitespace/braces | ||
filter=-whitespace/indent | ||
filter=-whitespace/parens | ||
filter=-whitespace/semicolon | ||
filter=-build/header_guard | ||
filter=-build/include_order | ||
filter=-build/include_subdir | ||
filter=-legal/copyright |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
repositories: | ||
repositories: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,4 @@ if(BUILD_TESTING) | |
ament_lint_auto_find_test_dependencies() | ||
endif() | ||
|
||
ament_auto_package() | ||
ament_auto_package() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,4 @@ endif() | |
ament_auto_package(INSTALL_TO_SHARE | ||
config | ||
launch | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
<launch> | ||
<arg name="local_costmap_topic" default="/perception/costmap" /> | ||
<arg name="odom_topic" default="/localization/odom" /> | ||
<arg name="local_goal_topic" default="/planning/local_goal" /> | ||
<arg name="cmd_vel_topic" default="/planning/cmd_vel" /> | ||
<arg name="local_costmap_topic" default="/perception/costmap"/> | ||
<arg name="odom_topic" default="/localization/odom"/> | ||
<arg name="local_goal_topic" default="/planning/local_goal"/> | ||
<arg name="cmd_vel_topic" default="/planning/cmd_vel"/> | ||
|
||
<arg name="config_file" | ||
default="$(find-pkg-share dwa_planner)/config/dwa_planner.param.yaml" /> | ||
<arg name="config_file" default="$(find-pkg-share dwa_planner)/config/dwa_planner.param.yaml"/> | ||
|
||
<node pkg="dwa_planner" name="dwa_planner" exec="dwa_planner_node" | ||
output="screen"> | ||
<remap from="~/input/local_costmap" to="$(var local_costmap_topic)" /> | ||
<remap from="~/input/odom" to="$(var odom_topic)" /> | ||
<remap from="~/input/local_goal" to="$(var local_goal_topic)" /> | ||
<remap from="~/output/cmd_vel" to="$(var cmd_vel_topic)" /> | ||
<param from="$(var config_file)" /> | ||
</node> | ||
</launch> | ||
<node pkg="dwa_planner" name="dwa_planner" exec="dwa_planner_node" output="screen"> | ||
<remap from="~/input/local_costmap" to="$(var local_costmap_topic)"/> | ||
<remap from="~/input/odom" to="$(var odom_topic)"/> | ||
<remap from="~/input/local_goal" to="$(var local_goal_topic)"/> | ||
<remap from="~/output/cmd_vel" to="$(var cmd_vel_topic)"/> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ | |
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> | ||
</package> |