
When an include is not surrounded by empty lines, its content is inlined on the same line as the adjacent content. That can lead to broken tags and other display issues. This PR fixes all such includes and introduces a validation step that forbids introducing the same problem again.
54 lines
1.0 KiB
Plaintext
54 lines
1.0 KiB
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
----
|
|
Imports System
|
|
Public Class C
|
|
Public Sub Main()
|
|
Dim x = Console.[In] ' Sensitive
|
|
Console.Read() ' Sensitive
|
|
Console.ReadKey() ' Sensitive
|
|
Console.ReadLine() ' Sensitive
|
|
Console.OpenStandardInput() ' Sensitive
|
|
End Sub
|
|
End Class
|
|
----
|
|
|
|
== Exceptions
|
|
|
|
This rule does not raise issues when the return value of the ``++Console.Read++`` ``++Console.ReadKey++`` or ``++Console.ReadLine++`` methods is ignored.
|
|
|
|
----
|
|
Imports System
|
|
|
|
Public Class C
|
|
Public Sub Main()
|
|
Console.ReadKey() ' Return value is ignored
|
|
Console.ReadLine() ' Return value is ignored
|
|
End Sub
|
|
End Class
|
|
----
|
|
|
|
include::../see.adoc[]
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
|
|
endif::env-github,rspecator-view[]
|