Fix/mute code style warnings
This commit is contained in:
parent
b88c7e6baa
commit
65060c00f1
|
@ -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" />
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
#nullable enable
|
||||
|
||||
using System;
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// ReSharper disable FieldCanBeMadeReadOnly.Global
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
#nullable enable
|
||||
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace BizHawk.Common
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue