rspec/rules/S139/vbnet/rule.adoc
Fred Tingaud 16f6c0aecf
Inline adoc when include has no additional value (#1940)
Inline adoc files when they are included exactly once.

Also fix language tags because this inlining gives us better information
on what language the code is written in.
2023-05-25 14:18:12 +02:00

66 lines
1.3 KiB
Plaintext

== Why is this an issue?
include::../description.adoc[]
=== Noncompliant code example
With the default comment pattern ``++^'\s*\S+\s*$++``, which ignores single word comments:
[source,vbnet]
----
Module Module1
Sub Main()
Console.WriteLine("Hello, world!") ' Noncompliant - My first program!
Console.WriteLine("Hello, world!") ' CompliantOneWord
End Sub
End Module
----
=== Compliant solution
[source,vbnet]
----
Module Module1
Sub Main()
' Compliant - My first program!
Console.WriteLine("Hello, world!")
Console.WriteLine("Hello, world!") ' CompliantOneWord
End Sub
End Module
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
=== Parameters
.legalCommentPattern
****
----
^'\s*\S+\s*$
----
Pattern for text of trailing comments that are allowed.
****
'''
== Comments And Links
(visible only on this page)
=== on 7 Sep 2016, 17:55:47 Ann Campbell wrote:
\[~tamas.vajk] IMO we need to remove this exception (and possibly rename the parameter for clarity?)
=== on 9 Sep 2016, 08:13:09 Tamas Vajk wrote:
\[~ann.campbell.2] All the other languages have this exception, and the parameter name is also similar there. Why do you think we'd need to fix these issues?
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]