Skip to content

Commit c28745c

Browse files
committed
line length
1 parent 8db8afe commit c28745c

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ repos:
6161

6262
# CPP hooks
6363
- repo: https://github.com/pre-commit/mirrors-clang-format
64-
rev: v18.1.4
64+
rev: v18.1.5
6565
hooks:
6666
- id: clang-format
6767
args: ["-fallback-style=none", "-i"]
@@ -125,15 +125,15 @@ repos:
125125
# Spellcheck in comments and docs
126126
# skipping of *.svg files is not working...
127127
- repo: https://github.com/codespell-project/codespell
128-
rev: v2.2.6
128+
rev: v2.3.0
129129
hooks:
130130
- id: codespell
131131
args: ["--write-changes", "--uri-ignore-words-list=ist", "-L manuel"]
132132
exclude: CHANGELOG\.rst|\.(svg|pyc|drawio)$
133133

134134
# Json lint
135135
- repo: https://github.com/python-jsonschema/check-jsonschema
136-
rev: 0.28.2
136+
rev: 0.28.4
137137
hooks:
138138
- id: check-github-workflows
139139
args: ["--verbose"]
@@ -152,12 +152,3 @@ repos:
152152
language: system
153153
types: [text]
154154
files: \.(xacro|urdf|sdf|xml|launch)$
155-
156-
- repo: local
157-
hooks:
158-
- id: check-line-length-under-100
159-
name: Check line length
160-
description: Ensure no line is longer than 100 characters.
161-
entry: bash -c 'if (( $(awk "{ if (length > 100) print }" $1 | wc -l) > 0 )); then echo "Line too long in file $1"; exit 1; fi'
162-
language: system
163-
files: .

0 commit comments

Comments
 (0)