-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clang tidy 9.0.0 is to perform static analysis of IDF sources. All component sources are analysed with default sdkconfig configuration, based on examples/get-started/hello_world project (compilation commands are extracted from default build commands for this project). Configuration of static analysis is defined in tools/ci/static-analysis-rules.yml Closes #145
- Loading branch information
1 parent
d4d1626
commit c4f3afd
Showing
2 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
limits: | ||
"clang-analyzer-core.NullDereference" : 9 | ||
"clang-analyzer-unix.Malloc" : 9 | ||
|
||
ignore: | ||
- "llvm-header-guard" | ||
- "llvm-include-order" | ||
|
||
skip: | ||
- "components/mbedtls/mbedtls" | ||
- "components/lwip/lwip" | ||
- "components/asio/asio" | ||
- "components/bootloader/subproject/components/micro-ecc/micro-ecc" | ||
- "components/bt/lib" | ||
- "components/coap/libcoap" | ||
- "components/esp_wifi/lib_esp32" | ||
- "components/expat/expat" | ||
- "components/json/cJSON" | ||
- "components/libsodium/libsodium" | ||
- "components/nghttp/nghttp2" | ||
- "components/protobuf-c/protobuf-c" | ||
- "components/spiffs/spiffs" | ||
- "components/unity/unity" |