File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,7 @@ Configuration files:
104104)" );
105105
106106const char DefaultChecks[] = // Enable these checks by default:
107- " clang-diagnostic-*," // * compiler diagnostics
108- " clang-analyzer-*" ; // * Static Analyzer checks
107+ " clang-diagnostic-*" ; // * compiler diagnostics
109108
110109static cl::opt<std::string> Checks (" checks" , desc(R"(
111110Comma-separated list of globs with optional '-'
Original file line number Diff line number Diff line change @@ -54,6 +54,10 @@ Potentially Breaking Changes
5454 :program: `clang-tidy-20 `. Users should use the check-specific options of the
5555 same name instead.
5656
57+ - Removed `clang-analyzer-* ` check from default checks in :program: `clang-tidy `.
58+ From now on, users should specify explicitly that they want CSA checks to run
59+ in :program: `clang-tidy `.
60+
5761- Renamed :program: `clang-tidy `'s option name of check
5862 :doc: `bugprone-easily-swappable-parameters
5963 <clang-tidy/checks/bugprone/easily-swappable-parameters>` from
@@ -158,6 +162,10 @@ Improvements to clang-tidy
158162 scripts by adding the `-hide-progress ` option to suppress progress and
159163 informational messages.
160164
165+ - Removed `clang-analyzer-* ` check from default checks in :program: `clang-tidy `.
166+ From now on, users should specify explicitly that they want CSA checks to run
167+ in :program: `clang-tidy `.
168+
161169New checks
162170^^^^^^^^^^
163171
You can’t perform that action at this time.
0 commit comments