Skip to content

Commit 21d26f7

Browse files
author
Colin Robertson
committed
Fix missing author warning in build
1 parent a794c38 commit 21d26f7

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

docs/code-quality/clang-tidy.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ title: Using Clang-Tidy in Visual Studio
33
description: "How to use Clang-Tidy in Visual Studio for Microsoft C++ code analysis."
44
ms.date: 02/19/2020
55
ms.topic: "conceptual"
6-
f1_keywords:
7-
- "vs.codeanalysis.clangtidy"
8-
author: frozenpandaman
9-
ms.author: efessler
6+
f1_keywords: ["vs.codeanalysis.clangtidy"]
107
---
118
# Using Clang-Tidy in Visual Studio
129

@@ -34,7 +31,7 @@ For more information, see [How to: Set Code Analysis Properties for C/C++ Projec
3431

3532
## CMake
3633

37-
In CMake projects, you can configure Clang-Tidy checks within `CMakeSettings.json`. Once opened, click "Edit JSON" in the top right-hand corner of the CMake Project Settings Editor. The following keys are recognized:
34+
In CMake projects, you can configure Clang-Tidy checks within `CMakeSettings.json`. Once opened, select "Edit JSON" in the top right-hand corner of the CMake Project Settings Editor. The following keys are recognized:
3835

3936
- `enableMicrosoftCodeAnalysis`: Enables Microsoft Code Analysis
4037
- `enableClangTidyCodeAnalysis`: Enables Clang-Tidy analysis
@@ -48,7 +45,7 @@ Clang-Tidy runs result in warnings displayed in the Error List, and as in-editor
4845

4946
## Clang-Tidy configuration
5047

51-
You can configure the checks that clang-tidy runs inside Visual Studio via the **Clang-Tidy Checks** option. This input is provided to the **--checks** argument of the tool. Any further configuration can be included in custom *`.clang-tidy`* files. For more information, see the [Clang-Tidy documentation on LLVM.org](https://clang.llvm.org/extra/clang-tidy/).
48+
You can configure the checks that clang-tidy runs inside Visual Studio via the **Clang-Tidy Checks** option. This input is provided to the **`--checks`** argument of the tool. Any further configuration can be included in custom *`.clang-tidy`* files. For more information, see the [Clang-Tidy documentation on LLVM.org](https://clang.llvm.org/extra/clang-tidy/).
5249

5350
## See also
5451

0 commit comments

Comments
 (0)