Enable SA1115 and fix noncompliance

"Parameter should follow comma"
i.e. no newlines in param list
This commit is contained in:
YoshiRulz 2020-01-25 15:55:16 +10:00
parent b80dd2fab7
commit d9d6ed76f4
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 0 additions and 7 deletions

View File

@ -1675,7 +1675,6 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
DataBlockType dataBlockType,
int pauseAfterBlock,
int pilotCount,
int pilotToneLength = 2168,
int sync1PulseLength = 667,
int sync2PulseLength = 735,
@ -1897,7 +1896,6 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC
byte[] blockData,
DataBlockType dataBlockType,
int pauseAfterBlock,
int pilotToneLength = 2168,
int sync1PulseLength = 667,
int sync2PulseLength = 735,

View File

@ -1617,7 +1617,6 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
DataBlockType dataBlockType,
int pauseAfterBlock,
int pilotCount,
int pilotToneLength = 2168,
int sync1PulseLength = 667,
int sync2PulseLength = 735,
@ -1838,7 +1837,6 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
byte[] blockData,
DataBlockType dataBlockType,
int pauseAfterBlock,
int pilotToneLength = 2168,
int sync1PulseLength = 667,
int sync2PulseLength = 735,

View File

@ -95,9 +95,6 @@
<!-- Parameter list should follow declaration -->
<Rule Id="SA1114" Action="Hidden" />
<!-- Parameter should follow comma -->
<Rule Id="SA1115" Action="Hidden" />
<!-- Split parameters should start on line after declaration -->
<Rule Id="SA1116" Action="Hidden" />