-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update pre-commit version and configs (#40)
* update markdown-link-check to v3.11.2 Signed-off-by: Autumn60 <[email protected]> * update .pre-commit-config.yaml Signed-off-by: Autumn60 <[email protected]> * update actions/checkout to v4 in pre-commit.yaml Signed-off-by: Autumn60 <[email protected]> * update actions/checkout to v4 in pre-commit-optional.yaml Signed-off-by: Autumn60 <[email protected]> --------- Signed-off-by: Autumn60 <[email protected]> Co-authored-by: Autumn60 <[email protected]>
- Loading branch information
Showing
4 changed files
with
40 additions
and
34 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
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,6 +1,6 @@ | ||
repos: | ||
- repo: https://github.com/tcort/markdown-link-check | ||
rev: v3.10.3 | ||
rev: v3.11.2 | ||
hooks: | ||
- id: markdown-link-check | ||
args: [--config=.markdown-link-check.json] | ||
args: [--quiet, --config=.markdown-link-check.json] |
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,92 +1,95 @@ | ||
ci: | ||
autofix_commit_msg: "ci(pre-commit): autofix" | ||
autoupdate_commit_msg: "ci(pre-commit): autoupdate" | ||
autofix_commit_msg: "style(pre-commit): autofix" | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.1.0 | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-json | ||
- id: check-merge-conflict | ||
- id: check-toml | ||
- id: check-xml | ||
- id: check-yaml | ||
args: [--unsafe] | ||
- id: detect-private-key | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
- id: trailing-whitespace | ||
args: [--markdown-linebreak-ext=md] | ||
|
||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: v0.30.0 | ||
rev: v0.33.0 | ||
hooks: | ||
- id: markdownlint | ||
args: [-c, .markdownlint.yaml, --fix] | ||
|
||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: v2.5.1 | ||
rev: v3.0.0-alpha.6 | ||
hooks: | ||
- id: prettier | ||
|
||
- repo: https://github.com/adrienverge/yamllint | ||
rev: v1.26.3 | ||
rev: v1.30.0 | ||
hooks: | ||
- id: yamllint | ||
|
||
- repo: https://github.com/tier4/pre-commit-hooks-ros | ||
rev: v0.4.0 | ||
rev: v0.8.0 | ||
hooks: | ||
- id: flake8-ros | ||
- id: prettier-xacro | ||
- id: prettier-launch-xml | ||
- id: prettier-package-xml | ||
- id: ros-include-guard | ||
- id: sort-package-xml | ||
|
||
- repo: https://github.com/shellcheck-py/shellcheck-py | ||
rev: v0.8.0.3 | ||
rev: v0.9.0.2 | ||
hooks: | ||
- id: shellcheck | ||
|
||
- repo: https://github.com/scop/pre-commit-shfmt | ||
rev: v3.4.2-1 | ||
rev: v3.6.0-2 | ||
hooks: | ||
- id: shfmt | ||
args: [-w, -s, -i=4] | ||
|
||
- repo: https://github.com/pycqa/isort | ||
rev: 5.10.1 | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.1.0 | ||
rev: 23.3.0 | ||
hooks: | ||
- id: black | ||
args: [--line-length=100] | ||
|
||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 4.0.1 | ||
hooks: | ||
- id: flake8 | ||
additional_dependencies: | ||
[ | ||
flake8-blind-except, | ||
flake8-builtins, | ||
flake8-class-newline, | ||
flake8-comprehensions, | ||
flake8-deprecated, | ||
flake8-docstrings, | ||
flake8-import-order, | ||
flake8-quotes, | ||
] | ||
|
||
- repo: https://github.com/pre-commit/mirrors-clang-format | ||
rev: v13.0.0 | ||
rev: v16.0.0 | ||
hooks: | ||
- id: clang-format | ||
types_or: [c++, c, cuda] | ||
|
||
- repo: https://github.com/cpplint/cpplint | ||
rev: 1.5.5 | ||
rev: 1.6.1 | ||
hooks: | ||
- id: cpplint | ||
args: [--quiet] | ||
exclude: .cu | ||
|
||
exclude: .svg | ||
- repo: https://github.com/python-jsonschema/check-jsonschema | ||
rev: 0.23.2 | ||
hooks: | ||
- id: check-metaschema | ||
files: ^.+/schema/.*schema\.json$ | ||
|
||
- repo: local | ||
hooks: | ||
- id: prettier-svg | ||
name: prettier svg | ||
description: Apply Prettier with plugin-xml to svg. | ||
entry: prettier --write --list-different --ignore-unknown --print-width 200 --xml-self-closing-space false --xml-whitespace-sensitivity ignore | ||
language: node | ||
files: .svg$ | ||
additional_dependencies: [[email protected], "@prettier/[email protected]"] |