From 03b934cc679c0900e8b98d23b5dd96965c33ce19 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Wed, 17 Jul 2024 22:28:10 -0600 Subject: [PATCH] Enable CA2016: forward the CancellationToken --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 91809344..b268b5ee 100644 --- a/.editorconfig +++ b/.editorconfig @@ -185,5 +185,8 @@ dotnet_diagnostic.DOC202.severity = warning # CA1062: Validate arguments of public methods dotnet_diagnostic.CA1062.severity = warning +# CA2016: Forward the CancellationToken parameter +dotnet_diagnostic.CA2016.severity = warning + [*.sln] indent_style = tab