Skip to content

Commit

Permalink
Small change to rule categories table (dotnet#27401)
Browse files Browse the repository at this point in the history
  • Loading branch information
gewarren authored Dec 10, 2021
1 parent 931d8a7 commit 40ba97b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/fundamentals/code-analysis/categories.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ The following table shows the different code analysis rule categories and provid
| Category | Description | EditorConfig value |
| - | - | - |
| Code quality rules | This category encompasses the following miscellaneous rules: [IDE0051](style-rules/ide0051.md), [IDE0064](style-rules/ide0064.md), [IDE0076](style-rules/ide0076.md). | `dotnet_analyzer_diagnostic.category-CodeQuality.severity` |
| [Design rules](quality-rules/design-warnings.md) | Design rules support adherence to the [.NET Framework Design Guidelines](../../standard/design-guidelines/index.md). | `dotnet_analyzer_diagnostic.category-Design.severity` |
| [Documentation rules](quality-rules/documentation-warnings.md) | Documentation rules support writing well-documented libraries through the correct use of XML documentation comments for externally visible APIs. | `dotnet_analyzer_diagnostic.category-Documentation.severity` |
| [Globalization rules](quality-rules/globalization-warnings.md) | Globalization rules support world-ready libraries and applications. | `dotnet_analyzer_diagnostic.category-Globalization.severity` |
Expand All @@ -30,3 +29,4 @@ The following table shows the different code analysis rule categories and provid
| [Security rules](quality-rules/security-warnings.md) | Security rules support safer libraries and applications. These rules help prevent security flaws in your program. | `dotnet_analyzer_diagnostic.category-Security.severity` |
| [Style rules](style-rules/index.md) | Style rules support consistent code style in your codebase. These rules start with the "IDE" prefix. | `dotnet_analyzer_diagnostic.category-Style.severity` |
| [Usage rules](quality-rules/usage-warnings.md) | Usage rules support proper usage of .NET. | `dotnet_analyzer_diagnostic.category-Usage.severity` |
| N/A | You can use this EditorConfig value to enable the following rules: [IDE0051](style-rules/ide0051.md), [IDE0064](style-rules/ide0064.md), [IDE0076](style-rules/ide0076.md). While these rules start with "IDE", they are not technically part of the `Style` category. | `dotnet_analyzer_diagnostic.category-CodeQuality.severity` |

0 comments on commit 40ba97b

Please sign in to comment.