From 45cd00889e5a8658e0f52b21f765a815b13ce03e Mon Sep 17 00:00:00 2001 From: jpirnay Date: Wed, 15 Apr 2026 01:50:37 +0200 Subject: [PATCH] chore: clang-format.fix.ps1 script: Add .venv to list of path exclusions (#1515) ## Summary * **What is the goal of this PR?** Dont format files in .venv directory * **What changes are included?** ## Additional Context * Add any other information that might be helpful for the reviewer (e.g., performance implications, potential risks, specific areas to focus on). --- ### AI Usage While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it helps set the right context for reviewers. Did you use AI tools to help write this code? _**< YES | PARTIALLY | NO >**_ --- bin/clang-format-fix.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/clang-format-fix.ps1 b/bin/clang-format-fix.ps1 index 9eae1715f..f90a81b73 100644 --- a/bin/clang-format-fix.ps1 +++ b/bin/clang-format-fix.ps1 @@ -97,6 +97,7 @@ $exclude = @( 'lib\Epub\Epub\hyphenation\generated' 'lib\uzlib' '.pio' + '.venv' ) function Test-Excluded($fullPath) {