Skip to content

Commit

Permalink
Merge pull request #4024 from sylvestre/check
Browse files Browse the repository at this point in the history
Document new clang-tidy checkers
  • Loading branch information
bruntib authored Sep 29, 2023
2 parents 6c952d7 + 603e3b7 commit 374063e
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions config/labels/analyzers/clang-tidy.json
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,13 @@
"profile:sensitive",
"severity:HIGH"
],
"bugprone-inc-dec-in-conditions": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/bugprone/inc-dec-in-conditions.html",
"profile:default",
"profile:extreme",
"profile:sensitive",
"severity:MEDIUM"
],
"bugprone-incorrect-roundings": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/bugprone/incorrect-roundings.html",
"profile:default",
Expand Down Expand Up @@ -347,6 +354,13 @@
"profile:sensitive",
"severity:MEDIUM"
],
"bugprone-multi-level-implicit-pointer-conversion": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/bugprone/multi-level-implicit-pointer-conversion.html",
"profile:extreme",
"profile:sensitive",
"severity:MEDIUM"
],

"bugprone-multiple-statement-macro": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/bugprone/multiple-statement-macro.html",
"profile:extreme",
Expand Down Expand Up @@ -555,6 +569,13 @@
"profile:sensitive",
"severity:HIGH"
],
"bugprone-switch-missing-default-case": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/bugprone/switch-missing-default-case.html",
"profile:default",
"profile:extreme",
"profile:sensitive",
"severity:LOW"
],
"bugprone-terminating-continue": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/bugprone/terminating-continue.html",
"profile:default",
Expand Down Expand Up @@ -5092,6 +5113,11 @@
"profile:extreme",
"severity:LOW"
],
"cppcoreguidelines-macro-to-enum": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines/macro-to-enum.html",
"profile:extreme",
"severity:LOW"
],
"cppcoreguidelines-macro-usage": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines/macro-usage.html",
"profile:extreme",
Expand Down Expand Up @@ -5591,6 +5617,13 @@
"profile:sensitive",
"severity:MEDIUM"
],
"misc-header-include-cycle": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/misc/header-include-cycle.html",
"profile:default",
"profile:extreme",
"profile:sensitive",
"severity:LOW"
],
"misc-misleading-bidirectional": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/misc/misleading-bidirectional.html",
"profile:default",
Expand Down Expand Up @@ -6124,6 +6157,12 @@
"profile:sensitive",
"severity:LOW"
],
"performance-enum-size": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/performance/enum-size.html",
"profile:extreme",
"profile:sensitive",
"severity:LOW"
],
"performance-for-range-copy": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/performance/for-range-copy.html",
"profile:extreme",
Expand Down

0 comments on commit 374063e

Please sign in to comment.