From ca5ef33647926caa9f5efbd1f8a46aa398226570 Mon Sep 17 00:00:00 2001 From: Gert Driesen Date: Mon, 27 Feb 2023 23:23:50 +0100 Subject: [PATCH] Document similarity between SA1649 and MA0048. (#456) --- docs/comparison-with-other-analyzers.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/comparison-with-other-analyzers.md b/docs/comparison-with-other-analyzers.md index a63ce4f5c..e54253f5e 100644 --- a/docs/comparison-with-other-analyzers.md +++ b/docs/comparison-with-other-analyzers.md @@ -54,3 +54,4 @@ | [CA2016](https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca2016?WT.mc_id=DT-MVP-5003978) | [MA0032](https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0032.md) | MA reports even if there is no CancellationToken available in the current context | | [CA2016](https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca2016?WT.mc_id=DT-MVP-5003978) | [MA0079](https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0079.md) | MA reports missing CancellationToken in `await foreach` expressions | | [CA2016](https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca2016?WT.mc_id=DT-MVP-5003978) | [MA0080](https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0080.md) | MA reports missing CancellationToken in `await foreach` expressions | +| [SA1649](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1649.md) | [MA0048](https://github.com/meziantou/Meziantou.Analyzer/blob/main/docs/Rules/MA0048.md) | SA supports configuration of file naming convention and skips partial classes |