rspec/rules/S1659/vbnet/rule.adoc

44 lines
711 B
Plaintext
Raw Normal View History

== Why is this an issue?
2020-06-30 12:47:33 +02:00
Declaring multiple variable on one line is difficult to read.
=== Noncompliant code example
2020-06-30 12:47:33 +02:00
2022-02-04 17:28:24 +01:00
[source,vbnet]
2020-06-30 12:47:33 +02:00
----
Module Module1
Public Const AAA As Integer = 5, BBB = 42, CCC As String = "foo" ' Noncompliant
End Module
----
=== Compliant solution
2020-06-30 12:47:33 +02:00
2022-02-04 17:28:24 +01:00
[source,vbnet]
2020-06-30 12:47:33 +02:00
----
Module Module1
Public Const AAA As Integer = 5
Public Const BBB = 42
Public Const CCC as String = "foo"
End Module
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Declare "XXX" in a separate statement.
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]