From 6d63866179b7eac0f81a9be4697be14376b80f27 Mon Sep 17 00:00:00 2001 From: Krzysztof kuhy Rudnicki Date: Sun, 12 Apr 2026 21:07:30 +0200 Subject: [PATCH] Add tests, fix lint issues, cap cppcheck memory - Add test suites for C/CPP/TS/Python projects - Fix ruff/cppcheck/eslint/clang-format lint failures - python_pkg/fm24_searcher, wake_alarm: new packages - Update .gitignore for C/C++ build artifacts - Cap cppcheck memory: --check-level=normal + ulimit -v 3GB --- .pre-commit-config.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7ed7ff1..201e560 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -337,12 +337,13 @@ repos: hooks: - id: cppcheck name: cppcheck - entry: cppcheck + entry: bash -c 'ulimit -v 3145728; exec cppcheck "$@"' -- language: system types_or: [c, c++] exclude: ^(pomodoro_app/|horatio/) args: - --enable=warning,portability + - --check-level=normal - --quiet - --error-exitcode=1 - --inline-suppr