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:
104
104
)" );
105
105
106
106
const char DefaultChecks[] = // Enable these checks by default:
107
- " clang-diagnostic-*," // * compiler diagnostics
108
- " clang-analyzer-*" ; // * Static Analyzer checks
107
+ " clang-diagnostic-*" ; // * compiler diagnostics
109
108
110
109
static cl::opt<std::string> Checks (" checks" , desc(R"(
111
110
Comma-separated list of globs with optional '-'
Original file line number Diff line number Diff line change @@ -54,6 +54,10 @@ Potentially Breaking Changes
54
54
:program: `clang-tidy-20 `. Users should use the check-specific options of the
55
55
same name instead.
56
56
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
+
57
61
- Renamed :program: `clang-tidy `'s option name of check
58
62
:doc: `bugprone-easily-swappable-parameters
59
63
<clang-tidy/checks/bugprone/easily-swappable-parameters>` from
@@ -158,6 +162,10 @@ Improvements to clang-tidy
158
162
scripts by adding the `-hide-progress ` option to suppress progress and
159
163
informational messages.
160
164
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
+
161
169
New checks
162
170
^^^^^^^^^^
163
171
You can’t perform that action at this time.
0 commit comments