Skip to content

Commit

Permalink
Removing some noisy checkers from the default profile
Browse files Browse the repository at this point in the history
- cppcoreguidelines-special-member-functions Many findings on legacy C++ code bases for missing move constructors
- misc-use-anonymous-namespace : this is like a style checker to use anonymous namespace instead of global score. This is more like a code-smell, not an error.
- google-global-names-in-headers: google specific styleguide for not polluting the global namespace. Switched off from the default profile this checker is very noisy on projects not following this convention.
  • Loading branch information
dkrupp committed Dec 8, 2023
1 parent 1a90030 commit dbf68cc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions config/labels/analyzers/clang-tidy.json
Original file line number Diff line number Diff line change
Expand Up @@ -5296,7 +5296,6 @@
],
"cppcoreguidelines-special-member-functions": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines/special-member-functions.html",
"profile:default",
"profile:extreme",
"profile:sensitive",
"severity:LOW"
Expand Down Expand Up @@ -5375,7 +5374,6 @@
],
"google-global-names-in-headers": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/google/global-names-in-headers.html",
"profile:default",
"profile:extreme",
"profile:sensitive",
"severity:STYLE"
Expand Down Expand Up @@ -6001,7 +5999,6 @@
],
"misc-use-anonymous-namespace": [
"doc_url:https://clang.llvm.org/extra/clang-tidy/checks/misc/use-anonymous-namespace.html",
"profile:default",
"profile:extreme",
"profile:sensitive",
"severity:LOW"
Expand Down

0 comments on commit dbf68cc

Please sign in to comment.