Enable SA1115 and fix noncompliance
"Parameter should follow comma" i.e. no newlines in param list
This commit is contained in:
parent
b80dd2fab7
commit
d9d6ed76f4
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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" />
|
||||
|
||||
|
|
Loading…
Reference in New Issue