From d0cac9f63f8a1929356f2e707dd3f577995f1a50 Mon Sep 17 00:00:00 2001 From: Vivian Nowka-Keane Date: Wed, 16 Aug 2023 14:15:16 -0700 Subject: .pytool: Set uncrustify check to audit only (temporary) Temporarily set uncrustify to audit only mode so the following commits can adjust the code for new formatting settings before those settings are applied. Cc: Sean Brogan Cc: Michael Kubacki Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Vivian Nowka-Keane Reviewed-by: Michael D Kinney --- .pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py b/.pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py index 8dc9ffe694..8978ffc443 100644 --- a/.pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py +++ b/.pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py @@ -530,7 +530,7 @@ class UncrustifyCheck(ICiBuildPlugin): """ Initializes options that influence test case output. """ - self._audit_only_mode = False + self._audit_only_mode = True self._output_file_diffs = True if "AuditOnly" in self._package_config and self._package_config["AuditOnly"]: -- cgit