Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pyspelling #45

Merged
merged 7 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Spellcheck Action

on:
workflow_call:
push:

jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rojopolis/spellcheck-github-actions@0.33.1
name: Spellcheck
53 changes: 53 additions & 0 deletions .pyspelling.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
matrix:
- name: Python Source
aspell:
lang: en
d: en_US
camel-case: true
sources:
- 'rosbot*/**/*.py'

dictionary:
encoding: utf-8
output: wordlist.dic
wordlists:
- .wordlist.txt

pipeline:
- pyspelling.filters.python:
comments: true

- name: Markdown sources
aspell:
lang: en
d: en_US
camel-case: true
sources:
- 'rosbot*/**/*.md'
- 'rosbot*/**/*.txt'
dictionary:
encoding: utf-8
output: wordlist.dic
wordlists:
- .wordlist.txt

pipeline:
- pyspelling.filters.text

- name: XML sources
aspell:
lang: en
d: en_US
camel-case: true
sources:
- 'rosbot*/**/*.xacro'
- 'rosbot*/**/*.urdf'
- 'rosbot*/**/*.xml'
dictionary:
encoding: utf-8
output: wordlist.dic
wordlists:
- .wordlist.txt

pipeline:
- pyspelling.filters.xml
61 changes: 61 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
wordlist
wordlists
pyspelling
metapackage
preconfigured
colcon
rosbot_xl_description
vcs
vcstool
rosdep
rosdistro
Dockerfiles
gamepad
teleoperation
laserscan
amcl
env
usr
ros
husarion
apache
http
www
urdf
xacro
imu
xl
rosbot
https
cmake
github
ament
Wojciechowski
Stepien
Nowak
Nikolas
ROSbot
Maciej
Krzysztof
extrinsics
Duc
Dominik
bringup
gz
ign
Jakub
Delicat
mecanum
fdir
webots
accelerometer
cmd
config
rl
rr
unstamped
vel
msg
lidar
gpu
gazebosim
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ROS2 packages for ROSbot XL

### `rosbot_xl`

Metapackeage that contains dependencies to other repositories. It is also used to define whether simulation dependencies should be used.
Metapackage that contains dependencies to other repositories. It is also used to define whether simulation dependencies should be used.

### `rosbot_xl_bringup`

Expand Down
2 changes: 1 addition & 1 deletion ROS_API.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Use `bringup.launch.py` from `rosbot_xl_bringup` to start all base functionalities for ROSbot XL. It consists of the following parts:
- `scan_to_scan_filter_chain` from `laser_filters`, it subscribes to `/scan` topic and removes all points that are within the robot's footprint (defined by config `laser_filter.yaml` in `rosbot_xl_bringup` package). Filtered laserscan is then published on `/scan_filtered` topic
- `scan_to_scan_filter_chain` from `laser_filters`, it subscribes to `/scan` topic and removes all points that are within the robot's footprint (defined by config `laser_filter.yaml` in `rosbot_xl_bringup` package). Filtered laser scan is then published on `/scan_filtered` topic

**Subscribes**
- `/scan` (_sensor_msgs/LaserScan_)
Expand Down
2 changes: 1 addition & 1 deletion rosbot_xl/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>rosbot_xl</name>
<version>0.8.3</version>

<description>Meta package that contains all packages of Rosbot XL</description>
<description>Meta package that contains all packages of ROSbot XL</description>
<license>Apache License 2.0</license>

<author email="krzysztof.wojciechowski@husarion.com">Krzysztof Wojciechowski</author>
Expand Down
Binary file added wordlist.dic
Binary file not shown.
Loading