From 5dae7e8904b80592194cb4fd3f5261650af29816 Mon Sep 17 00:00:00 2001 From: Tau Date: Thu, 11 Apr 2024 13:50:52 +0200 Subject: [PATCH] Add TODOs --- .editorconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.editorconfig b/.editorconfig index 989daa57..d2d18bd0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -54,6 +54,8 @@ dotnet_diagnostic.IDE0011.severity = warning # Add braces csharp_style_inlined_variable_declaration = true # Prefer `out` variables to be declared inline in the argument list of a method call when possible dotnet_diagnostic.IDE0018.severity = warning +# TODO: Go through all language rules: https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/language-rules + # Formatting # See: https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/csharp-formatting-options dotnet_diagnostic.IDE0055.severity = warning @@ -102,3 +104,6 @@ csharp_space_between_square_brackets = false ## Wrap Options csharp_preserve_single_line_statements = false + +# Naming +# TODO: Define naming (see https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/naming-rules)