From 00e004500e74c03d1e9b0306554a1f036835fe3a Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Tue, 2 Jul 2024 06:50:40 -0400 Subject: [PATCH] .pre-commit-config.yaml - autoupdate + a codespell fix rolling back clang-format to v17.0.6 --- .pre-commit-config.yaml | 10 +++++----- src/Config.cpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6297cfdd5..2975d28a0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,7 +7,7 @@ ci: exclude: ^(cmake/ECM|cmake/KDAB/|src/3rdparty/|code.dev.code-workspace) repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v4.6.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -26,17 +26,17 @@ repos: - id: clang-format exclude: (.json) - repo: https://github.com/PyCQA/pylint - rev: v3.1.0 + rev: v3.2.4 hooks: - id: pylint exclude: ^(.cmake-format.py|conan/conanfile.py) additional_dependencies: ["PySide2", "PySide6"] - repo: https://github.com/hhatto/autopep8 - rev: v2.1.0 + rev: v2.3.1 hooks: - id: autopep8 - repo: https://github.com/codespell-project/codespell - rev: v2.2.6 + rev: v2.3.0 hooks: - id: codespell - repo: https://github.com/cheshirekow/cmake-format-precommit @@ -55,7 +55,7 @@ repos: files: \.(md|mdown|markdown)$ exclude: (docs/book/) - repo: https://github.com/fsfe/reuse-tool - rev: v3.0.1 + rev: v3.1.0a1 hooks: - id: reuse args: [--suppress-deprecation] diff --git a/src/Config.cpp b/src/Config.cpp index f7ef27090..a8e1912ff 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -11,7 +11,7 @@ /** * @file - * @brief Application wide config to tune certain beahviours of the framework. + * @brief Application wide config to tune certain framework behaviors. * * @author Sérgio Martins \ */