From 79a814a0b2c005dd0dbb329dfa137d520c5a0885 Mon Sep 17 00:00:00 2001 From: Mads Kjeldgaard Date: Mon, 22 Jul 2024 12:03:11 +0200 Subject: [PATCH] ci: Use clang tidy as checker --- platformio.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platformio.ini b/platformio.ini index 17f0f95..8bdeaae 100644 --- a/platformio.ini +++ b/platformio.ini @@ -10,6 +10,10 @@ framework = arduino build_unflags = -std=gnu++11 build_flags = -std=gnu++17 -fconcepts +; Use clang-tidy when runnning `pio check` +; https://docs.platformio.org/en/stable/advanced/static-code-analysis/tools/clang-tidy.html +check_tool = clangtidy + ; Serial monitor speed, make sure this is matched in Serial.begin() monitor_speed = 115200