We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf6e0ea commit 0fb6876Copy full SHA for 0fb6876
build_test_all.cmd
@@ -27,6 +27,14 @@ goto :post_format
27
goto :eof
28
29
:run_clang_format
30
+ set filePath=%1
31
+ :: The test subfolder has obj directories with many redundant copies of generated cppwinrt headers. The
32
+ :: cost of formatting these files is vastly higher than the cost of formatting the code that is checked in
33
+ :: to this repo. Skip any file path with "obj" as a substring.
34
+ if not !filePath:obj!==!filePath! (
35
+ goto :eof
36
+ )
37
+ echo Formatting !filePath!
38
"%CLANG_FORMAT%" -style=file -i %1
39
40
0 commit comments