diff --git a/.editorconfig b/.editorconfig index 383bd380f4..63e7fac17d 100644 --- a/.editorconfig +++ b/.editorconfig @@ -150,6 +150,30 @@ dotnet_style_null_propagation = true # IDE0034: Simplify 'default' expression dotnet_diagnostic.IDE0034.severity = warning +# IDE0090: Use 'new(...)' +dotnet_diagnostic.IDE0090.severity = warning + +# IDE0150: Prefer 'null' check over type check +dotnet_diagnostic.IDE0150.severity = warning + +# IDE0028: Simplify collection initialization +dotnet_diagnostic.IDE0028.severity = warning + +# IDE0017: Simplify object initialization +dotnet_diagnostic.IDE0017.severity = warning + +# CA1829: Use Length/Count property instead of Count() when available +dotnet_diagnostic.CA1829.severity = warning + +# CA1840: Use 'Environment.CurrentManagedThreadId' +dotnet_diagnostic.CA1840.severity = warning + +# CA1825: Avoid zero-length array allocations +dotnet_diagnostic.CA1825.severity = warning + +# CA1854: Prefer the 'IDictionary.TryGetValue(TKey, out TValue)' method +dotnet_diagnostic.CA1854.severity = warning + #### Naming styles #### # Naming rules (define naming rule using dotnet_naming_rule..