From 031fe9b844ddb7585886950aea06371de9c1d58a Mon Sep 17 00:00:00 2001 From: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 19 Jun 2026 15:35:57 -0400 Subject: [PATCH 1/2] feat: add 'examples' directory to clang format script --- scripts/update_clang_format.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/update_clang_format.py b/scripts/update_clang_format.py index 676369b..7608f90 100644 --- a/scripts/update_clang_format.py +++ b/scripts/update_clang_format.py @@ -6,6 +6,7 @@ # variables directories = [ + 'examples', 'src', 'tests', 'tools', From f7645e982bebd8756196c05a203b779dd84f70a7 Mon Sep 17 00:00:00 2001 From: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 19 Jun 2026 15:47:32 -0400 Subject: [PATCH 2/2] Add 'examples' directory to expected roots in tests --- tests/unit/test_update_clang_format.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/test_update_clang_format.py b/tests/unit/test_update_clang_format.py index b73f4ed..d790d1c 100644 --- a/tests/unit/test_update_clang_format.py +++ b/tests/unit/test_update_clang_format.py @@ -11,6 +11,7 @@ def test_directories_include_expected_roots(): """Verify the formatter scans the expected shared source roots.""" assert update_clang_format.directories == [ + 'examples', 'src', 'tests', 'tools',