esp-idf/tools/ci/sonar_exclude_list.txt
Sudeep Mohanty 4846222102 freertos: update freertos folder structure to match upstream
The following changes have been made:
1. All FreeRTOS kernel source files are now placed in the
   freertos/FreeRTOS-Kernel folder to match with the upstream folder structure.
2. All kernel include files are now placed in freertos/FreeRTOS-Kernel/include.
3. All port files are now placed in freertos/FreeRTOS-Kernel/portable.
4. All additions/customizations are placed in freertos/esp_additions.
5. All other miscellaneous files (README, License files etc.) are moved to
   freertos/FreeRTOS-Kernel folder to match with the upstream.
6. Updated esp-cryptoauthlib to latest commit to resolve FreeRTOS
   include dependencies.

Signed-off-by: Sudeep Mohanty <sudeep.mohanty@espressif.com>
2021-10-29 12:05:13 +08:00

16 lines
415 B
Plaintext

# exclude list for sonarqube
# Here're some examples: (relative with the idf_path)
# test/**
# test/*/*.c
# test.c
#
# lines start with # will be ignored
# FreeRTOS upstream code (don't include our port files here)
components/freertos/FreeRTOS-Kernel/*.c
components/freertos/FreeRTOS-Kernel/include/freertos/*.h
# wpa_supplicant upstream code
components/wpa_supplicant/src/**
components/wpa_supplicant/include/**