From 8dbb29da3fe733f5a1350c5f9d3d7c3bc71870d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20de=20Giessen?= Date: Wed, 9 Aug 2023 12:50:24 +0200 Subject: [PATCH] tools/codeformat.py: Skip formatting ESP-IDF managed components. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniƫl van de Giessen --- tools/codeformat.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/codeformat.py b/tools/codeformat.py index 517aced37a..93a4b14123 100755 --- a/tools/codeformat.py +++ b/tools/codeformat.py @@ -60,6 +60,8 @@ PATHS = [ EXCLUSIONS = [ # The cc3200 port is not fully formatted yet. "ports/cc3200/*/*.[ch]", + # ESP-IDF downloads 3rd party code. + "ports/esp32/managed_components/*", # The nrf port is not fully formatted yet. "ports/nrf/boards/*.[ch]", "ports/nrf/device/*.[ch]",