From 5a2d95e08f89ac6eeac7a132cddf4dee2902c371 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Sat, 28 Mar 2026 13:32:04 +0100 Subject: [PATCH] [doc] Simplify clang-tidy section --- docs/user_guide/ci.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/user_guide/ci.rst b/docs/user_guide/ci.rst index 72573f94..12bc54a2 100644 --- a/docs/user_guide/ci.rst +++ b/docs/user_guide/ci.rst @@ -104,11 +104,11 @@ clang-tidy (static analysis): cmake -S . -B build -G Ninja -D CMAKE_BUILD_TYPE=Release -D CMAKE_EXPORT_COMPILE_COMMANDS=ON cmake --build build -j - # Single file analysis - clang-tidy -p build tasks/__/src/.cpp - - # Optional: analyze all sources (if run-clang-tidy is available) - run-clang-tidy -p build -j $(nproc) || true + # clang-tidy run: + ### analyze all sources + run-clang-tidy -p build + ### apply available automatic fixes + run-clang-tidy -p build -fix gcovr (coverage, GCC):