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

DO NOT MERGE: check spell-check ci for #5 #6

Closed
wants to merge 10 commits into from
61 changes: 60 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"ignorePaths": [
"**/*.bash",
"**/*.cspell.json",
"**/*.dae",
"**/*.html",
"**/*.mp3",
"**/*.mp4",
"**/*.pcd",
"**/*.rviz",
"**/*.sh",
"**/*.stl",
"**/*.svg",
"**/*.wav",
Expand Down Expand Up @@ -39,9 +42,65 @@
},
{
"filename": "**/{*.cpp,*.hpp}",
"ignoreRegExpList": ["@author .*$", "[\\@]tparam", "\\author .*$", "Author(s)?( )?: .*$"]
"ignoreRegExpList": ["@author .*$", "[\\@]tparam", "\\author .*$", "Author(s)?( )?: .*$", "TODO\\((.*?)\\)"]
}
],
"words": [
"ackermann",
"adapi",
"aichallenge",
"autocompute",
"automotiveaichallenge",
"autoware",
"awsim",
"buildtool",
"colcon",
"costmap",
"cuda",
"cyclonedds",
"dallara",
"dcmake",
"distro",
"downsample",
"freespace",
"gnss",
"gnucxx",
"gtest",
"initialpose",
"lanechange",
"lanefollowing",
"lanelet",
"libgazebo",
"libgl",
"linalg",
"lowpass",
"mapfile",
"mathcal",
"mgrs",
"odometry",
"osrf",
"pitstop",
"pointcloud",
"rclcpp",
"rclpy",
"rcutils",
"rgba",
"rois",
"rosdep",
"rosdistro",
"rviz",
"schematypens",
"sideshift",
"srvs",
"stddev",
"traj",
"urdf",
"velodyne",
"wextra",
"wmctrl",
"wpedantic",
"xacro",
"xyzrpy",
"zcvf"
]
}
2 changes: 2 additions & 0 deletions .github/workflows/spell-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- main
workflow_dispatch:
pull_request:
branches: [main]

jobs:
spell-check:
Expand Down