Fix/mute code style warnings

This commit is contained in:
James Groom 2023-10-24 22:32:17 +10:00 committed by GitHub
parent b88c7e6baa
commit 65060c00f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -461,6 +461,10 @@
<!-- Use the Regex source generator -->
<Rule Id="MA0110" Action="Error" />
</Rules>
<Rules AnalyzerId="Microsoft.CodeAnalysis.FxCopAnalyzers" RuleNamespace="Microsoft.CodeAnalysis.FxCopAnalyzers">
<!-- Implement serialization constructors -->
<Rule Id="CA2229" Action="Hidden" />
</Rules>
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers.SpacingRules">
<!-- Keywords should be spaced correctly -->
<Rule Id="SA1000" Action="Hidden" />

View File

@ -1,6 +1,4 @@
#nullable enable
using System;
using System;
using System.Runtime.InteropServices;
// ReSharper disable FieldCanBeMadeReadOnly.Global

View File

@ -1,6 +1,4 @@
#nullable enable
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
namespace BizHawk.Common
{