Skip to content

Commit 694d6f1

Browse files
Bump version of pre-commit hooks (#1514)
1 parent 5c16eb6 commit 694d6f1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ repos:
5050
args: ["--ignore=D100,D101,D102,D103,D104,D105,D106,D107,D203,D212,D404"]
5151

5252
- repo: https://github.com/psf/black
53-
rev: 24.10.0
53+
rev: 25.1.0
5454
hooks:
5555
- id: black
5656
args: ["--line-length=99"]
@@ -63,7 +63,7 @@ repos:
6363

6464
# CPP hooks
6565
- repo: https://github.com/pre-commit/mirrors-clang-format
66-
rev: v19.1.5
66+
rev: v19.1.7
6767
hooks:
6868
- id: clang-format
6969
args: ['-fallback-style=none', '-i']
@@ -126,14 +126,14 @@ repos:
126126
# Spellcheck in comments and docs
127127
# skipping of *.svg files is not working...
128128
- repo: https://github.com/codespell-project/codespell
129-
rev: v2.3.0
129+
rev: v2.4.1
130130
hooks:
131131
- id: codespell
132132
args: ['--write-changes', '--uri-ignore-words-list=ist', '-L manuel']
133133
exclude: CHANGELOG\.rst|\.(svg|pyc|drawio)$
134134

135135
- repo: https://github.com/python-jsonschema/check-jsonschema
136-
rev: 0.30.0
136+
rev: 0.31.1
137137
hooks:
138138
- id: check-github-workflows
139139
args: ["--verbose"]

gripper_controllers/include/gripper_controllers/gripper_action_controller.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class GripperActionController : public controller_interface::ControllerInterface
9797
const rclcpp_lifecycle::State & previous_state) override;
9898

9999
realtime_tools::RealtimeBuffer<Commands> command_;
100-
// pre-allocated memory that is re-used to set the realtime buffer
100+
// pre-allocated memory that is reused to set the realtime buffer
101101
Commands command_struct_, command_struct_rt_;
102102

103103
protected:

parallel_gripper_controller/include/parallel_gripper_controller/parallel_gripper_action_controller.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class GripperActionController : public controller_interface::ControllerInterface
9494
const rclcpp_lifecycle::State & previous_state) override;
9595

9696
realtime_tools::RealtimeBuffer<Commands> command_;
97-
// pre-allocated memory that is re-used to set the realtime buffer
97+
// pre-allocated memory that is reused to set the realtime buffer
9898
Commands command_struct_, command_struct_rt_;
9999

100100
protected:

0 commit comments

Comments
 (0)