From dfb0d593ad6fae51f336b8e824d617c1b7f70e6e Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Mon, 23 Aug 2021 11:02:46 +0800 Subject: [PATCH] ci(sonarqube): update file pattern according to https://docs.sonarqube.org/7.6/project-administration/narrowing-the-focus/ --- sonar-project.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sonar-project.properties b/sonar-project.properties index 164c54522c..4dfd721db6 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -7,13 +7,13 @@ sonar.sourceEncoding=UTF-8 # exclude list for sonarqube # Here're some examples: (relative with the idf_path) -# test/** +# test/**/* # test/*/*.c sonar.exclusion=\ components/freertos/*.c,\ components/freertos/include/freertos/*.h,\ - components/wpa_supplicant/src/**,\ - components/wpa_supplicant/include/** + components/wpa_supplicant/src/**/*,\ + components/wpa_supplicant/include/**/* sonar.inclusions=\ **/*.c,**/*.cpp,**/*.h,**/*.hpp,\