rspec/rules/S115/vb6/rule.adoc

15 lines
248 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
include::../description.adoc[]
== Noncompliant Code Example
With the default regular expression <code>^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$</code>:
----
Global Const WdgtStatusOk = 0
----
== Compliant Solution
----
Global Const WDGT_STATUS_OK = 0
----