You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`clangTidyChecks`: Clang-Tidy configuration, specified as a comma-separated list, that is, checks to be enabled or disabled
40
+
-`clangTidyChecks`: Clang-Tidy configuration. A comma-separated list, that is, checks to be enabled or disabled (e.g. "cert-oop58-cpp, -cppcoreguidelines-no-malloc, google-runtime-int" enables `cert-oop58-cpp` and `google-runtime-int` checks and disables via the `-` operator the `cppcoreguidelines-no-malloc` check)
41
41
42
42
If neither of the "enable" options are specified, Visual Studio will select the analysis tool matching the Platform Toolset used.
43
43
44
44
### CMake Settings
45
-
To edit your clang-tidy settings, open your CMake Settings, select "Edit JSON" in the top right-hand corner of the CMake Project Settings Editor. You can use the keys above to fill out your clang-tidy specifications in the CMake Settings json file.
46
-
An example CMake settings implementation would look like this:
45
+
To edit your clang-tidy settings, open your CMake Settings, select **Edit JSON** in the CMake Project Settings Editor. You can use the keys above to fill out your clang-tidy specifications in the CMake Settings json file.
46
+
An example CMake settings implementation looks like this:
0 commit comments