Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,12 @@ dotnet_diagnostic.IDE0301.severity = suggestion
dotnet_diagnostic.IDE0305.severity = suggestion
dotnet_diagnostic.IDE0306.severity = suggestion

# Remove unnecessary nullable warning suppression
dotnet_diagnostic.IDE0370.severity = suggestion

Comment thread
ViktorHofer marked this conversation as resolved.
# Remove unnecessary 'unsafe' modifier
dotnet_diagnostic.IDE0380.severity = suggestion

# Temporarily disable SA1010 "Opening square brackets should not be preceded by a space" until https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/3687 is fixed
dotnet_diagnostic.SA1010.severity = none

Expand All @@ -431,6 +437,9 @@ dotnet_diagnostic.IDE0330.severity = suggestion
# Use implicitly typed lambda
dotnet_diagnostic.IDE0350.severity = none

#Nullable suppression is unnecessary (not when multi-targeting to net472): https://github.com/dotnet/msbuild/issues/12726
dotnet_diagnostic.IDE0370.severity = none

# Value types are incompatible with null values. https://xunit.net/xunit.analyzers/rules/xUnit1012
dotnet_diagnostic.xUnit1012.severity = warning

Expand Down
2 changes: 1 addition & 1 deletion eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Dependencies>
<Source Uri="https://github.com/dotnet/dotnet" Mapping="msbuild" Sha="5a69737e6f6447fe397d552503a3909ea49f6f34" BarId="293565" />
<Source Uri="https://github.com/dotnet/dotnet" Mapping="msbuild" Sha="181f8798913e9c234e19756db58f38a8cac176ea" BarId="298730" />
<ProductDependencies>
<!-- Necessary for source-build. This allows the live version of the package to be used by source-build. -->
<Dependency Name="System.CodeDom" Version="9.0.11">
Expand Down
Loading