rspec/rules/S100/flex/rule.adoc

15 lines
226 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
include::../description.adoc[]
== Noncompliant Code Example
With default provided regular expression: ^[a-z][a-zA-Z0-9]*$
----
function DoSomething(){...}
----
== Compliant Solution
----
function doSomething(){...}
----